diff options
author | dj <dj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-07-10 05:03:01 +0000 |
---|---|---|
committer | dj <dj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-07-10 05:03:01 +0000 |
commit | 7c88e5139429d67cee9024435cad0d95b7d42307 (patch) | |
tree | 1db025e7528a5c185abb6b07197d9a5fa9b3fae9 /gcc/target-def.h | |
parent | b2d83a62511ce18574a98f00fb4b0008153a83f6 (diff) | |
download | gcc-7c88e5139429d67cee9024435cad0d95b7d42307.tar.gz |
* targhooks.c (default_target_can_inline_p): Rename from
default_target_option_can_inline_p.
* targhooks.h (default_target_can_inline_p): Likewise.
* target-def.h (TARGET_CAN_INLINE_P): Rename from
TARGET_OPTION_CAN_INLINE_P.
* config/i386/i386.c (TARGET_CAN_INLINE_P): Likewise.
* config/mep/mep.c (TARGET_CAN_INLINE_P): Likewise.
(mep_target_can_inline_p): Rename from
mep_target_option_can_inline_p.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@149457 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/target-def.h')
-rw-r--r-- | gcc/target-def.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/target-def.h b/gcc/target-def.h index ddf3e0adc4f..54060f5395c 100644 --- a/gcc/target-def.h +++ b/gcc/target-def.h @@ -827,8 +827,8 @@ #define TARGET_OPTION_PRAGMA_PARSE default_target_option_pragma_parse #endif -#ifndef TARGET_OPTION_CAN_INLINE_P -#define TARGET_OPTION_CAN_INLINE_P default_target_option_can_inline_p +#ifndef TARGET_CAN_INLINE_P +#define TARGET_CAN_INLINE_P default_target_can_inline_p #endif #define TARGET_OPTION_HOOKS \ @@ -838,7 +838,7 @@ TARGET_OPTION_RESTORE, \ TARGET_OPTION_PRINT, \ TARGET_OPTION_PRAGMA_PARSE, \ - TARGET_OPTION_CAN_INLINE_P, \ + TARGET_CAN_INLINE_P, \ } /* The whole shebang. */ |