Commit b0223c3e by Jan Hubicka Committed by Jan Hubicka

re PR tree-optimization/47233 (IPA reference tends to explode in memory use with…

re PR tree-optimization/47233 (IPA reference tends to explode in memory use with -fprofile-generate)

	PR tree-optimization/47233
	* opts.c (common_handle_option): Disable ipa-reference with profile feedback.

From-SVN: r168700
parent 81dc6eea
2011-01-12 Jan Hubicka <jh@suse.cz>
PR tree-optimization/47233
* opts.c (common_handle_option): Disable ipa-reference with profile feedback.
2011-01-12 Nicola Pero <nicola.pero@meta-innovation.com>
* c-parser.c (c_parser_objc_at_property_declaration): Improved
......
......@@ -1561,6 +1561,11 @@ common_handle_option (struct gcc_options *opts,
opts->x_flag_value_profile_transformations = value;
if (!opts_set->x_flag_inline_functions)
opts->x_flag_inline_functions = value;
/* 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 && in_lto_p)
opts->x_flag_ipa_reference = false;
break;
case OPT_fshow_column:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment