This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

PATCH: PR middle-end/41395: [4.5 regression] Revision 151800 failed bootstrap


This patch allows me to bootstrap gcc. We should disable IPA-SRA until
it is fixed. I will check it in if it isn't fixed by Monday.

Thanks.

H.J.
----
2009-09-19  H.J. Lu  <hongjiu.lu@intel.com>

	PR middle-end/41395
	* opts.c (decode_options): Don't turn flag_ipa_sra on for opt2.

Index: opts.c
===================================================================
--- opts.c	(revision 151800)
+++ opts.c	(working copy)
@@ -898,7 +898,9 @@ decode_options (unsigned int argc, const
   flag_tree_pre = opt2;
   flag_tree_switch_conversion = 1;
   flag_ipa_cp = opt2;
+#if 0
   flag_ipa_sra = opt2;
+#endif
 
   /* Track fields in field-sensitive alias analysis.  */
   set_param_value ("max-fields-for-field-sensitive",


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]