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
This commit is contained in:
Paolo Bonzini 2005-07-21 07:30:00 +00:00 committed by Paolo Bonzini
parent f9cc1a70d5
commit 2fab365eb9
7 changed files with 40 additions and 6 deletions

View File

@ -1,3 +1,15 @@
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.
2005-07-21 Paolo Bonzini <bonzini@gnu.org>
Zdenek Dvorak <dvorakz@suse.cz>

View File

@ -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. */

View File

@ -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);

View File

@ -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);

View File

@ -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. */

View File

@ -1,5 +1,11 @@
2005-07-21 Paolo Bonzini <bonzini@gnu.org>
PR target/22085
* gcc.dg/altivec-pr22085.c: New.
2005-07-21 Paolo Bonzini <bonzini@gnu.org>
PR tree-optimization/19210
* gcc.dg/tree-ssa/pr19210-1.c: New.
* gcc.dg/tree-ssa/pr19210-2.c: New.

View File

@ -0,0 +1,12 @@
/* { dg-do compile { target powerpc*-*-* } } */
/* { dg-options "-maltivec -fpreprocessed" } */
/* Program to test AltiVec with -fpreprocessed. */
int foo(__attribute__((altivec(vector__))) float x,
__attribute__((altivec(vector__))) float y)
{
if (__builtin_vec_vcmpeq_p (2, (x), (y)))
return 3245;
else
return 12;
}