diff options
author | Jan Hubicka <hubicka@ucw.cz> | 2014-04-17 07:59:03 +0200 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2014-04-17 05:59:03 +0000 |
commit | 1c58fe290b9a2c0f8cd4af6a075ed919de14cbf1 (patch) | |
tree | c8e0ff2f19c909f04117938279561ab6107ddd93 | |
parent | 2d1644bf5b2a2186aa00d50fa7c44832a020f5a8 (diff) | |
download | gcc-1c58fe290b9a2c0f8cd4af6a075ed919de14cbf1.zip gcc-1c58fe290b9a2c0f8cd4af6a075ed919de14cbf1.tar.gz gcc-1c58fe290b9a2c0f8cd4af6a075ed919de14cbf1.tar.bz2 |
opts.c (common_handle_option): Disable -fipa-reference coorectly with -fuse-profile.
* opts.c (common_handle_option): Disable -fipa-reference coorectly
with -fuse-profile.
From-SVN: r209462
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/opts.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 783a1b8..953658f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,10 @@ 2014-04-16 Jan Hubicka <hubicka@ucw.cz> + * opts.c (common_handle_option): Disable -fipa-reference coorectly + with -fuse-profile. + +2014-04-16 Jan Hubicka <hubicka@ucw.cz> + * ipa-devirt.c (odr_type_d): Add field all_derivations_known. (type_all_derivations_known_p): New predicate. (type_all_ctors_visible_p): New predicate. @@ -1732,7 +1732,7 @@ common_handle_option (struct gcc_options *opts, /* FIXME: Instrumentation we insert makes ipa-reference bitmaps quadratic. Disable the pass until better memory representation is done. */ - if (!opts_set->x_flag_ipa_reference && opts->x_in_lto_p) + if (!opts_set->x_flag_ipa_reference) opts->x_flag_ipa_reference = false; break; |