Patch: make mapped locations the default

Tom Tromey tromey@redhat.com
Thu Nov 8 14:45:00 GMT 2007


>>>>> "Andreas" == Andreas Schwab <schwab@suse.de> writes:

[..]
Andreas> No longer true.

Oops.  Thanks for catching that.  Here's the fixed patch.

Tom

ChangeLog:
2007-11-08  Tom Tromey  <tromey@redhat.com>

	* common.opt (fshow-column): Default to 0.
	* configure: Rebuilt.
	* configure.ac (--enable-mapped-location): Default to 'yes'.

Index: configure.ac
===================================================================
--- configure.ac	(revision 129968)
+++ configure.ac	(working copy)
@@ -525,7 +525,7 @@
 
 AC_ARG_ENABLE(mapped-location,
 [  --enable-mapped-location   location_t is fileline integer cookie],,
-enable_mapped_location=no)
+enable_mapped_location=yes)
 
 if test "$enable_mapped_location" = yes ; then
   AC_DEFINE(USE_MAPPED_LOCATION, 1,
Index: common.opt
===================================================================
--- common.opt	(revision 129968)
+++ common.opt	(working copy)
@@ -24,6 +24,7 @@
 
 -help
 Common
+
 Display this information
 
 -help=
@@ -926,8 +927,8 @@
 Eliminate redundant sign extensions using LCM.
 
 fshow-column
-Common C ObjC C++ ObjC++ Report Var(flag_show_column) Init(1)
-Show column numbers in diagnostics, when available.  Default on
+Common C ObjC C++ ObjC++ Report Var(flag_show_column) Init(0)
+Show column numbers in diagnostics, when available.  Default off
 
 fsignaling-nans
 Common Report Var(flag_signaling_nans) Optimization



More information about the Gcc-patches mailing list