aboutsummaryrefslogtreecommitdiff
path: root/gcc/opts.c
diff options
context:
space:
mode:
authorJan Hubicka <hubicka@ucw.cz>2014-04-17 07:59:03 +0200
committerJan Hubicka <hubicka@gcc.gnu.org>2014-04-17 05:59:03 +0000
commit1c58fe290b9a2c0f8cd4af6a075ed919de14cbf1 (patch)
treec8e0ff2f19c909f04117938279561ab6107ddd93 /gcc/opts.c
parent2d1644bf5b2a2186aa00d50fa7c44832a020f5a8 (diff)
downloadgcc-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
Diffstat (limited to 'gcc/opts.c')
-rw-r--r--gcc/opts.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/opts.c b/gcc/opts.c
index e85e73a..27b32d6 100644
--- a/gcc/opts.c
+++ b/gcc/opts.c
@@ -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;