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] Temporarily enable ac_fold_checking for --enable-checking=yes.


Hello!

Now that after many years of brokenness spop fixed --enable-ckecking=fold, I'd like to propose that we enable fold checking for a couple of weeks (perhaps to the end of current temporary development freeze period?). Attached patch implements this proposal.

Bootstrap is currently under way on x86_64. OK for mainline if it passes?

OK for mainline?

2007-06-21 Uros Bizjak <ubizjak@gmail.com>

       * configure.ac: Set ac_fold_checking for --enable-checking=yes.
       * configure: Regenerate.

Uros.


Index: configure
===================================================================
--- configure	(revision 125929)
+++ configure	(working copy)
@@ -6426,7 +6426,7 @@
 	case $check in
 	# these set all the flags to specific states
 	yes)		ac_assert_checking=1 ; ac_checking=1 ; ac_df_checking=1 ;
-			ac_fold_checking= ; ac_gc_checking=1 ;
+			ac_fold_checking=1 ; ac_gc_checking=1 ;
 			ac_gc_always_collect= ; ac_rtl_checking= ;
 			ac_rtlflag_checking=1 ; ac_runtime_checking=1 ;
 			ac_tree_checking=1 ; ac_valgrind_checking= ;;
Index: configure.ac
===================================================================
--- configure.ac	(revision 125929)
+++ configure.ac	(working copy)
@@ -363,7 +363,7 @@
 	case $check in
 	# these set all the flags to specific states
 	yes)		ac_assert_checking=1 ; ac_checking=1 ; ac_df_checking=1 ;
-			ac_fold_checking= ; ac_gc_checking=1 ;
+			ac_fold_checking=1 ; ac_gc_checking=1 ;
 			ac_gc_always_collect= ; ac_rtl_checking= ;
 			ac_rtlflag_checking=1 ; ac_runtime_checking=1 ;
 			ac_tree_checking=1 ; ac_valgrind_checking= ;;

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