diff options
author | Nathan Froyd <froydnj@codesourcery.com> | 2011-03-24 13:03:06 +0000 |
---|---|---|
committer | Nathan Froyd <froydnj@gcc.gnu.org> | 2011-03-24 13:03:06 +0000 |
commit | b25b9e8fd23816f50754d5bfa8364d2f3f4ca4a5 (patch) | |
tree | 942037d3317717fc15b2e64c5ef5978fabb9e1f9 /gcc/system.h | |
parent | 190b2187b62863306378ea0940a6ddd2eb3629d5 (diff) | |
download | gcc-b25b9e8fd23816f50754d5bfa8364d2f3f4ca4a5.zip gcc-b25b9e8fd23816f50754d5bfa8364d2f3f4ca4a5.tar.gz gcc-b25b9e8fd23816f50754d5bfa8364d2f3f4ca4a5.tar.bz2 |
system.h (FUNCTION_ARG, [...]): Poison.
* system.h (FUNCTION_ARG, FUNCTION_INCOMING_ARG): Poison.
(FUNCTION_ARG_ADVANCE): Likewise.
* tm.texi.in: Change references to them to hook references.
* tm.texi: Regenerate.
* targhooks.c (default_function_arg): Eliminate check for target
macro.
(default_function_incoming_arg): Likewise.
(default_function_arg_advance): Likewise.
* target.def (function_arg, function_incoming_arg): Change to
DEFHOOK.
(function_arg_advance): Likewise.
* target-def.h: Eliminate FUNCTION_INCOMING_ARG check.
From-SVN: r171389
Diffstat (limited to 'gcc/system.h')
-rw-r--r-- | gcc/system.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/system.h b/gcc/system.h index 0bf9b92..630b428 100644 --- a/gcc/system.h +++ b/gcc/system.h @@ -828,7 +828,8 @@ extern void fancy_abort (const char *, int, const char *) ATTRIBUTE_NORETURN; TARGET_OPTION_TRANSLATE_TABLE HANDLE_PRAGMA_PACK_PUSH_POP \ HANDLE_SYSV_PRAGMA HANDLE_PRAGMA_WEAK CONDITIONAL_REGISTER_USAGE \ FUNCTION_ARG_BOUNDARY MUST_USE_SJLJ_EXCEPTIONS US_SOFTWARE_GOFAST \ - USING_SVR4_H SVR4_ASM_SPEC + USING_SVR4_H SVR4_ASM_SPEC FUNCTION_ARG FUNCTION_ARG_ADVANCE \ + FUNCTION_INCOMING_ARG /* Hooks that are no longer used. */ #pragma GCC poison LANG_HOOKS_FUNCTION_MARK LANG_HOOKS_FUNCTION_FREE \ |