From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 60033 invoked by alias); 2 Sep 2017 14:20:13 -0000 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 Received: (qmail 59980 invoked by uid 89); 2 Sep 2017 14:20:13 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-24.6 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,KAM_LAZY_DOMAIN_SECURITY,RCVD_IN_DNSWL_NONE,RP_MATCHES_RCVD autolearn=ham version=3.3.2 spammy=H*r:8.14.5 X-HELO: mx.sdf.org Received: from mx.sdf.org (HELO mx.sdf.org) (205.166.94.20) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 02 Sep 2017 14:20:08 +0000 Received: from sdf.org (IDENT:coypu@sdf.lonestar.org [205.166.94.15]) by mx.sdf.org (8.15.2/8.14.5) with ESMTPS id v82EJkGj016937 (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256 bits) verified NO); Sat, 2 Sep 2017 14:19:46 GMT Received: (from coypu@localhost) by sdf.org (8.15.2/8.12.8/Submit) id v82EJjla003071; Sat, 2 Sep 2017 14:19:45 GMT Date: Sat, 02 Sep 2017 14:20:00 -0000 From: Maya Rashish To: gcc-patches@gcc.gnu.org Cc: rth@twiddle.net Subject: [PATCH, alpha] Don't refer to -mfp-trap-mode=n as a default Message-ID: <20170902141945.GA12491@SDF.ORG> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.8.3 (2017-05-23) X-SW-Source: 2017-09/txt/msg00105.txt.bz2 The typical usage on alpha is done with passing -mieee, which sets -mfp-trap-mode=su. I found it confusing, at least. --- gcc/doc/invoke.texi | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi index f7bad9d23..acdb17ba5 100644 --- a/gcc/doc/invoke.texi +++ b/gcc/doc/invoke.texi @@ -17304,9 +17304,8 @@ The trap mode can be set to one of four values: @table @samp @item n -This is the default (normal) setting. The only traps that are enabled -are the ones that cannot be disabled in software (e.g., division by zero -trap). +The only traps that are enabled are the ones that cannot be disabled in +software (e.g., division by zero trap). @item u In addition to the traps enabled by @samp{n}, underflow traps are enabled -- 2.14.1