diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-02-08 02:13:29 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-02-08 02:13:29 +0000 |
commit | fefcb65c3d9a4a07ea6cd81cabe82169ab2bdd79 (patch) | |
tree | 000273995d5b400db2cc3a450340bd3813c569cb /gcc/system.h | |
parent | dc79b3b841bb884421e179367fd13619c515c328 (diff) | |
download | gcc-fefcb65c3d9a4a07ea6cd81cabe82169ab2bdd79.zip gcc-fefcb65c3d9a4a07ea6cd81cabe82169ab2bdd79.tar.gz gcc-fefcb65c3d9a4a07ea6cd81cabe82169ab2bdd79.tar.bz2 |
default.h (PROMOTE_PROTOTYPES): Remove.
* default.h (PROMOTE_PROTOTYPES): Remove.
* system.h (PROMOTE_FUNCTION_RETURN, PROMOTE_PROTOTYPES,
STRUCT_VALUE_REGNUM, SETUP_INCOMING_VARARGS,
EXPAND_BUILTIN_SAVEREGS): Poison.
* target-def.h (TARGET_PROMOTE_FUNCTION_RETURN): Define as
hook_bool_tree_false.
(TARGET_PROMOTE_PROTOTYPES): Likewise.
* target.h: Replace SETUP_INCOMING_VARARGS with
targetm.calls.setup_incoming_varargs().
* targhooks.c (default_promote_function_return): Remove.
(default_promote_prototypes): Likewise.
(default_struct_value_rtx): Always abort().
(default_expand_builtin_saveregs): Always print an error
message.
(default_setup_incoming_varargs): Do nothing.
(default_pretend_outgoing_varargs_named): Don't depend on
SETUP_INCOMING_VARARGS.
* targhooks.h: Remove the prototype for
default_promote_function_return and
default_promote_prototypes.
From-SVN: r77477
Diffstat (limited to 'gcc/system.h')
-rw-r--r-- | gcc/system.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gcc/system.h b/gcc/system.h index 12c48bd..31a1b92 100644 --- a/gcc/system.h +++ b/gcc/system.h @@ -603,7 +603,9 @@ typedef char _Bool; MODDI3_LIBCALL UMODSI3_LIBCALL UMODDI3_LIBCALL BUILD_VA_LIST_TYPE \ PRETEND_OUTGOING_VARARGS_NAMED STRUCT_VALUE_INCOMING_REGNUM \ ASM_OUTPUT_SECTION_NAME PROMOTE_FUNCTION_ARGS \ - STRUCT_VALUE_INCOMING STRICT_ARGUMENT_NAMING + STRUCT_VALUE_INCOMING STRICT_ARGUMENT_NAMING \ + PROMOTE_FUNCTION_RETURN PROMOTE_PROTOTYPES STRUCT_VALUE_REGNUM \ + SETUP_INCOMING_VARARGS EXPAND_BUILTIN_SAVEREGS /* Other obsolete target macros, or macros that used to be in target headers and were not used, and may be obsolete or may never have |