Commit 1cd130b0 by Iain Sandoe Committed by Iain Sandoe

re PR target/53283 (Many failures on x86_64-apple-darwin10 after revision 186789)


	PR target/53283
	* config/i386/i386.c (ix86_fold_builtin): Call SUBTARGET_FOLD_BUILTIN
	if defined.
	* config/darwin.h: Rename TARGET_FOLD_BUILTIN to
	SUBTARGET_FOLD_BUILTIN.
	* config/rs6000/darwin.h: Map TARGET_FOLD_BUILTIN onto
	SUBTARGET_FOLD_BUILTIN.

From-SVN: r189391
parent f29234df
2012-07-09 Iain Sandoe <iain@codesourcery.com> 2012-07-09 Iain Sandoe <iain@codesourcery.com>
PR target/53283
* config/i386/i386.c (ix86_fold_builtin): Call SUBTARGET_FOLD_BUILTIN
if defined.
* config/darwin.h: Rename TARGET_FOLD_BUILTIN to
SUBTARGET_FOLD_BUILTIN.
* config/rs6000/darwin.h: Map TARGET_FOLD_BUILTIN onto
SUBTARGET_FOLD_BUILTIN.
2012-07-09 Iain Sandoe <iain@codesourcery.com>
* config/darwin.h (SUBTARGET_C_COMMON_OVERRIDE_OPTIONS): Move NeXT * config/darwin.h (SUBTARGET_C_COMMON_OVERRIDE_OPTIONS): Move NeXT
runtime exceptions model setting from here ... runtime exceptions model setting from here ...
* config/darwin.c (darwin_override_options): ... to here. * config/darwin.c (darwin_override_options): ... to here.
......
...@@ -902,7 +902,7 @@ void add_framework_path (char *); ...@@ -902,7 +902,7 @@ void add_framework_path (char *);
#define TARGET_KEXTABI flag_apple_kext #define TARGET_KEXTABI flag_apple_kext
/* We have target-specific builtins. */ /* We have target-specific builtins. */
#define TARGET_FOLD_BUILTIN darwin_fold_builtin #define SUBTARGET_FOLD_BUILTIN darwin_fold_builtin
#define TARGET_N_FORMAT_TYPES 1 #define TARGET_N_FORMAT_TYPES 1
#define TARGET_FORMAT_TYPES darwin_additional_format_types #define TARGET_FORMAT_TYPES darwin_additional_format_types
......
...@@ -28097,6 +28097,10 @@ ix86_fold_builtin (tree fndecl, int n_args, ...@@ -28097,6 +28097,10 @@ ix86_fold_builtin (tree fndecl, int n_args,
} }
} }
#ifdef SUBTARGET_FOLD_BUILTIN
return SUBTARGET_FOLD_BUILTIN (fndecl, n_args, args, ignore);
#endif
return NULL_TREE; return NULL_TREE;
} }
...@@ -422,3 +422,7 @@ do { \ ...@@ -422,3 +422,7 @@ do { \
rs6000_builtin_decls[(unsigned) (RS6000_BUILTIN_CFSTRING)] \ rs6000_builtin_decls[(unsigned) (RS6000_BUILTIN_CFSTRING)] \
= darwin_init_cfstring_builtins ((unsigned) (RS6000_BUILTIN_CFSTRING)); \ = darwin_init_cfstring_builtins ((unsigned) (RS6000_BUILTIN_CFSTRING)); \
} while(0) } while(0)
/* So far, there is no rs6000_fold_builtin, if one is introduced, then
this will need to be modified similar to the x86 case. */
#define TARGET_FOLD_BUILTIN SUBTARGET_FOLD_BUILTIN
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment