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
This commit is contained in:
Jan Hubicka 2014-04-17 07:59:03 +02:00 committed by Jan Hubicka
parent 2d1644bf5b
commit 1c58fe290b
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
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.

View File

@ -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;