diff options
| author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-09-05 23:38:34 +0000 |
|---|---|---|
| committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-09-05 23:38:34 +0000 |
| commit | 92ffbdd1cb1e46f7e177f5875a2cbeae5803153d (patch) | |
| tree | c624cc200bda8981c263590dbe6096d8837aba49 | |
| parent | a3558ba3474fc620dbf1473b4467c1cda81e8a9e (diff) | |
| download | ppe42-gcc-92ffbdd1cb1e46f7e177f5875a2cbeae5803153d.tar.gz ppe42-gcc-92ffbdd1cb1e46f7e177f5875a2cbeae5803153d.zip | |
* opts.c (common_handle_option): Enable inlining functions for
-fprofile-generate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@128161 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/opts.c | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ba5f47bc7f1..66646abb57b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2007-09-06 Jan Hubicka <jh@suse.cz> + + * opts.c (common_handle_option): Enable inlining functions for + -fprofile-generate. + 2007-09-06 Jakub Jelinek <jakub@redhat.com> * builtin-attrs.def (ATTR_NONNULL_3): New. diff --git a/gcc/opts.c b/gcc/opts.c index f6c749f32c8..e935fd9509c 100644 --- a/gcc/opts.c +++ b/gcc/opts.c @@ -1635,6 +1635,8 @@ common_handle_option (size_t scode, const char *arg, int value, flag_profile_values = value; if (!flag_value_profile_transformations_set) flag_value_profile_transformations = value; + if (!flag_inline_functions_set) + flag_inline_functions = value; break; case OPT_fprofile_values: |

