From patchwork Fri Aug 20 15:29:35 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Joseph Myers X-Patchwork-Id: 62287 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) by ozlabs.org (Postfix) with SMTP id 17685B6F11 for ; Sat, 21 Aug 2010 01:29:47 +1000 (EST) Received: (qmail 5934 invoked by alias); 20 Aug 2010 15:29:45 -0000 Received: (qmail 5924 invoked by uid 22791); 20 Aug 2010 15:29:44 -0000 X-SWARE-Spam-Status: No, hits=-1.8 required=5.0 tests=AWL, BAYES_00, TW_LG, T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from mail.codesourcery.com (HELO mail.codesourcery.com) (38.113.113.100) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 20 Aug 2010 15:29:38 +0000 Received: (qmail 6573 invoked from network); 20 Aug 2010 15:29:36 -0000 Received: from unknown (HELO digraph.polyomino.org.uk) (joseph@127.0.0.2) by mail.codesourcery.com with ESMTPA; 20 Aug 2010 15:29:36 -0000 Received: from jsm28 (helo=localhost) by digraph.polyomino.org.uk with local-esmtp (Exim 4.69) (envelope-from ) id 1OmTXD-0001RO-8K; Fri, 20 Aug 2010 15:29:35 +0000 Date: Fri, 20 Aug 2010 15:29:35 +0000 (UTC) From: "Joseph S. Myers" To: gcc-patches@gcc.gnu.org, fortran@gcc.gnu.org Subject: Fix typos in fortran/lang.opt Message-ID: MIME-Version: 1.0 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org My previous patch marking -MD and -MMD with NoDriverArg incorrectly used the wrong spelling NoArgDriver in fortran/lang.opt. This had no actual effect because flags from all .opt files are combined and c-family/c.opt has the correct spelling; I've now committed the following patch as obvious to fix the spelling. Bootstrapped with no regressions on x86_64-unknown-linux-gnu. Index: lang.opt =================================================================== --- lang.opt (revision 163406) +++ lang.opt (working copy) @@ -61,7 +61,7 @@ ; Documented in C MD -Fortran Separate NoArgDriver +Fortran Separate NoDriverArg ; Documented in C MF @@ -77,7 +77,7 @@ ; Documented in C MMD -Fortran Separate NoArgDriver +Fortran Separate NoDriverArg ; Documented in C MP Index: ChangeLog =================================================================== --- ChangeLog (revision 163406) +++ ChangeLog (working copy) @@ -1,5 +1,9 @@ 2010-08-20 Joseph Myers + * lang.opt (MD, MMD): Use NoDriverArg instead of NoArgDriver. + +2010-08-20 Joseph Myers + * gfortranspec.c (lang_specific_driver): Refer to -lgfortran in comment, not -lg2c.