diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-03-03 23:55:52 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-03-03 23:55:52 +0000 |
commit | 67dfe1108e268fa9db986f628ee7b42b4901b8b6 (patch) | |
tree | 8bbdd20f2db68edcbad7b5407da0d4c5ce549749 /gcc/system.h | |
parent | dd0a905f24c159bc583a40aadedaf40a01c747bd (diff) | |
download | gcc-67dfe1108e268fa9db986f628ee7b42b4901b8b6.zip gcc-67dfe1108e268fa9db986f628ee7b42b4901b8b6.tar.gz gcc-67dfe1108e268fa9db986f628ee7b42b4901b8b6.tar.bz2 |
hooks.c (hook_tree_tree_identity): New.
* hooks.c (hook_tree_tree_identity): New.
* hooks.h: Add a prototype for hook_tree_tree_identity.
* stmt.c (expand_asm_operands): Use targetm.md_asm_clobbers
instead of MD_ASM_CLOBBERS.
* system.h (MD_ASM_CLOBBERS): Poison.
* target-def.h (TARGET_MD_ASM_CLOBBERS): New.
(TARGET_INITIALIZER): Add TARGET_MD_ASM_CLOBBERS.
* target.h (gcc_target): Add md_asm_clobbers.
* config/i386/i386.c (TARGET_MD_ASM_CLOBBERS): New.
(ix86_md_asm_clobbers): New.
* config/i386/i386.h (MD_ASM_CLOBBERS): Remove.
* doc/tm.texi (MD_ASM_CLOBBERS): Change to
TARGET_MD_ASM_CLOBBERS.
From-SVN: r78868
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 8d91547..424ac5f 100644 --- a/gcc/system.h +++ b/gcc/system.h @@ -640,7 +640,8 @@ typedef char _Bool; MAX_WCHAR_TYPE_SIZE GCOV_TYPE_SIZE SHARED_SECTION_ASM_OP \ FINAL_REG_PARM_STACK_SPACE MAYBE_REG_PARM_STACK_SPACE \ TRADITIONAL_PIPELINE_INTERFACE DFA_PIPELINE_INTERFACE \ - DBX_OUTPUT_STANDARD_TYPES BUILTIN_SETJMP_FRAME_VALUE + DBX_OUTPUT_STANDARD_TYPES BUILTIN_SETJMP_FRAME_VALUE \ + MD_ASM_CLOBBERS /* Hooks that are no longer used. */ #pragma GCC poison LANG_HOOKS_FUNCTION_MARK LANG_HOOKS_FUNCTION_FREE \ |