diff options
author | DJ Delorie <dj@redhat.com> | 2009-07-10 01:03:01 -0400 |
---|---|---|
committer | DJ Delorie <dj@gcc.gnu.org> | 2009-07-10 01:03:01 -0400 |
commit | 5cec9f5974ed8ab0788179b2afd48eb484f39acb (patch) | |
tree | 1db025e7528a5c185abb6b07197d9a5fa9b3fae9 /gcc/targhooks.c | |
parent | 1d8e1d5d9f87473eb7cae2c3b4109beeb87ce3da (diff) | |
download | gcc-5cec9f5974ed8ab0788179b2afd48eb484f39acb.zip gcc-5cec9f5974ed8ab0788179b2afd48eb484f39acb.tar.gz gcc-5cec9f5974ed8ab0788179b2afd48eb484f39acb.tar.bz2 |
targhooks.c (default_target_can_inline_p): Rename from default_target_option_can_inline_p.
* 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.
From-SVN: r149457
Diffstat (limited to 'gcc/targhooks.c')
-rw-r--r-- | gcc/targhooks.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/targhooks.c b/gcc/targhooks.c index 50a82f4..7d5a092 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); |