aboutsummaryrefslogtreecommitdiff
path: root/gcc/targhooks.c
diff options
context:
space:
mode:
authordj <dj@138bc75d-0d04-0410-961f-82ee72b054a4>2009-07-10 05:03:01 +0000
committerdj <dj@138bc75d-0d04-0410-961f-82ee72b054a4>2009-07-10 05:03:01 +0000
commit7c88e5139429d67cee9024435cad0d95b7d42307 (patch)
tree1db025e7528a5c185abb6b07197d9a5fa9b3fae9 /gcc/targhooks.c
parentb2d83a62511ce18574a98f00fb4b0008153a83f6 (diff)
* 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/targhooks.c')
-rw-r--r--gcc/targhooks.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/targhooks.c b/gcc/targhooks.c
index 50a82f47faf..7d5a09233c7 100644
--- a/gcc/targhooks.c
+++ b/gcc/targhooks.c
@@ -771,7 +771,7 @@ default_target_option_pragma_parse (tree ARG_UNUSED (args),
}
bool
-default_target_option_can_inline_p (tree caller, tree callee)
+default_target_can_inline_p (tree caller, tree callee)
{
bool ret = false;
tree callee_opts = DECL_FUNCTION_SPECIFIC_TARGET (callee);