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.h | |
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.h')
-rw-r--r-- | gcc/targhooks.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/targhooks.h b/gcc/targhooks.h index 5d77ce5..839f1c3 100644 --- a/gcc/targhooks.h +++ b/gcc/targhooks.h @@ -107,5 +107,5 @@ extern tree default_emutls_var_init (tree, tree, tree); extern bool default_hard_regno_scratch_ok (unsigned int); extern bool default_target_option_valid_attribute_p (tree, tree, tree, int); extern bool default_target_option_pragma_parse (tree, tree); -extern bool default_target_option_can_inline_p (tree, tree); +extern bool default_target_can_inline_p (tree, tree); extern unsigned int default_case_values_threshold (void); |