From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 827 invoked by alias); 8 Nov 2007 14:45:56 -0000 Received: (qmail 817 invoked by uid 22791); 8 Nov 2007 14:45:55 -0000 X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org (qpsmtpd/0.31) with ESMTP; Thu, 08 Nov 2007 14:45:51 +0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.13.8/8.13.1) with ESMTP id lA8Ehdlc008643; Thu, 8 Nov 2007 09:43:39 -0500 Received: from pobox.corp.redhat.com (pobox.corp.redhat.com [10.11.255.20]) by int-mx1.corp.redhat.com (8.13.1/8.13.1) with ESMTP id lA8Ehch4002837; Thu, 8 Nov 2007 09:43:38 -0500 Received: from opsy.redhat.com (ton.yyz.redhat.com [10.15.16.15]) by pobox.corp.redhat.com (8.13.1/8.13.1) with ESMTP id lA8EhZZg002369; Thu, 8 Nov 2007 09:43:36 -0500 Received: by opsy.redhat.com (Postfix, from userid 500) id D530A378256; Thu, 8 Nov 2007 07:16:49 -0700 (MST) To: Andreas Schwab Cc: Mark Mitchell , Eric Botcazou , gcc-patches@gcc.gnu.org Subject: Re: Patch: make mapped locations the default References: <200710260742.20014.ebotcazou@adacore.com> <200710312013.32515.ebotcazou@adacore.com> <472E5711.7000802@codesourcery.com> <472E73E9.60709@codesourcery.com> From: Tom Tromey Reply-To: tromey@redhat.com X-Attribution: Tom Date: Thu, 08 Nov 2007 14:45:00 -0000 In-Reply-To: (Andreas Schwab's message of "Thu\, 08 Nov 2007 15\:36\:24 +0100") Message-ID: User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.990 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org X-SW-Source: 2007-11/txt/msg00419.txt.bz2 >>>>> "Andreas" == Andreas Schwab writes: [..] Andreas> No longer true. Oops. Thanks for catching that. Here's the fixed patch. Tom ChangeLog: 2007-11-08 Tom Tromey * 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