diff options
author | Paolo Bonzini <bonzini@gnu.org> | 2005-07-21 07:30:00 +0000 |
---|---|---|
committer | Paolo Bonzini <bonzini@gcc.gnu.org> | 2005-07-21 07:30:00 +0000 |
commit | 2fab365eb958c699ff3cc4952924a456cc01d79c (patch) | |
tree | b5e2a441ba704232c2a1736b96888dfec5ff6890 /gcc/config | |
parent | f9cc1a70d51e2874055417fd0153e4434f0d9d89 (diff) | |
download | gcc-2fab365eb958c699ff3cc4952924a456cc01d79c.zip gcc-2fab365eb958c699ff3cc4952924a456cc01d79c.tar.gz gcc-2fab365eb958c699ff3cc4952924a456cc01d79c.tar.bz2 |
re PR target/22085 (error with -fpreprocessed)
gcc:
2005-07-21 Paolo Bonzini <bonzini@gnu.org>
PR target/22085
* config/rs6000/rs6000-c.c (rs6000_cpu_cpp_builtins): Do not
initialize targetm.resolve_overloaded_builtin here.
(altivec_expand_overloaded_builtin): Make it non-static.
* config/rs6000/rs6000-protos.h
(altivec_expand_overloaded_builtin): New prototype.
* config/rs6000/rs6000.h (REGISTER_TARGET_PRAGMAS): Initialize
targetm.resolve_overloaded_builtin here.
* config/rs6000/darwin.h (REGISTER_TARGET_PRAGMAS): Likewise.
testsuite:
2005-07-21 Paolo Bonzini <bonzini@gnu.org>
PR target/22085
* gcc.dg/altivec-pr22085.c: New.
From-SVN: r102226
Diffstat (limited to 'gcc/config')
-rw-r--r-- | gcc/config/rs6000/darwin.h | 8 | ||||
-rw-r--r-- | gcc/config/rs6000/rs6000-c.c | 6 | ||||
-rw-r--r-- | gcc/config/rs6000/rs6000-protos.h | 1 | ||||
-rw-r--r-- | gcc/config/rs6000/rs6000.h | 1 |
4 files changed, 10 insertions, 6 deletions
diff --git a/gcc/config/rs6000/darwin.h b/gcc/config/rs6000/darwin.h index 6086445..482c6e7 100644 --- a/gcc/config/rs6000/darwin.h +++ b/gcc/config/rs6000/darwin.h @@ -383,7 +383,13 @@ do { \ #define BOOL_TYPE_SIZE (darwin_one_byte_bool ? CHAR_TYPE_SIZE : INT_TYPE_SIZE) #undef REGISTER_TARGET_PRAGMAS -#define REGISTER_TARGET_PRAGMAS DARWIN_REGISTER_TARGET_PRAGMAS +#define REGISTER_TARGET_PRAGMAS() \ + do \ + { \ + DARWIN_REGISTER_TARGET_PRAGMAS(); \ + targetm.resolve_overloaded_builtin = altivec_resolve_overloaded_builtin; \ + } \ + while (0) /* Just like config/darwin.h's REAL_LIBGCC_SPEC, but use -lgcc_s_ppc64 for -m64. */ diff --git a/gcc/config/rs6000/rs6000-c.c b/gcc/config/rs6000/rs6000-c.c index c125c78..bfe542f 100644 --- a/gcc/config/rs6000/rs6000-c.c +++ b/gcc/config/rs6000/rs6000-c.c @@ -38,8 +38,6 @@ -static tree altivec_resolve_overloaded_builtin (tree, tree); - /* Handle the machine specific pragma longcall. Its syntax is # pragma longcall ( TOGGLE ) @@ -143,8 +141,6 @@ rs6000_cpu_cpp_builtins (cpp_reader *pfile) /* Let the compiled code know if 'f' class registers will not be available. */ if (TARGET_SOFT_FLOAT || !TARGET_FPRS) builtin_define ("__NO_FPRS__"); - - targetm.resolve_overloaded_builtin = altivec_resolve_overloaded_builtin; } @@ -2470,7 +2466,7 @@ altivec_build_resolved_builtin (tree *args, int n, /* Implementation of the resolve_overloaded_builtin target hook, to support Altivec's overloaded builtins. */ -static tree +tree altivec_resolve_overloaded_builtin (tree fndecl, tree arglist) { unsigned int fcode = DECL_FUNCTION_CODE (fndecl); diff --git a/gcc/config/rs6000/rs6000-protos.h b/gcc/config/rs6000/rs6000-protos.h index 14dd8e6..2103e60 100644 --- a/gcc/config/rs6000/rs6000-protos.h +++ b/gcc/config/rs6000/rs6000-protos.h @@ -115,6 +115,7 @@ extern void function_arg_advance (CUMULATIVE_ARGS *, enum machine_mode, tree, int, int); extern int function_arg_boundary (enum machine_mode, tree); extern rtx function_arg (CUMULATIVE_ARGS *, enum machine_mode, tree, int); +extern tree altivec_resolve_overloaded_builtin (tree, tree); extern rtx rs6000_function_value (tree, tree); extern rtx rs6000_libcall_value (enum machine_mode); extern rtx rs6000_va_arg (tree, tree); diff --git a/gcc/config/rs6000/rs6000.h b/gcc/config/rs6000/rs6000.h index 269d5bb0..b5e1286 100644 --- a/gcc/config/rs6000/rs6000.h +++ b/gcc/config/rs6000/rs6000.h @@ -339,6 +339,7 @@ extern enum rs6000_nop_insertion rs6000_sched_insert_nops; /* Target pragma. */ #define REGISTER_TARGET_PRAGMAS() do { \ c_register_pragma (0, "longcall", rs6000_pragma_longcall); \ + targetm.resolve_overloaded_builtin = altivec_resolve_overloaded_builtin; \ } while (0) /* Target #defines. */ |