From patchwork Fri Mar 17 17:06:32 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Richard Earnshaw \(lists\)" X-Patchwork-Id: 95433 Delivered-To: patch@linaro.org Received: by 10.140.89.134 with SMTP id v6csp395826qgd; Fri, 17 Mar 2017 10:06:53 -0700 (PDT) X-Received: by 10.98.80.209 with SMTP id g78mr17792507pfj.163.1489770412985; Fri, 17 Mar 2017 10:06:52 -0700 (PDT) Return-Path: Received: from sourceware.org (server1.sourceware.org. [209.132.180.131]) by mx.google.com with ESMTPS id v24si5342725pgc.143.2017.03.17.10.06.52 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 17 Mar 2017 10:06:52 -0700 (PDT) Received-SPF: pass (google.com: domain of gcc-patches-return-450246-patch=linaro.org@gcc.gnu.org designates 209.132.180.131 as permitted sender) client-ip=209.132.180.131; Authentication-Results: mx.google.com; dkim=pass header.i=@gcc.gnu.org; spf=pass (google.com: domain of gcc-patches-return-450246-patch=linaro.org@gcc.gnu.org designates 209.132.180.131 as permitted sender) smtp.mailfrom=gcc-patches-return-450246-patch=linaro.org@gcc.gnu.org DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:to :from:subject:message-id:date:mime-version:content-type; q=dns; s=default; b=sz00gTICG1M9tC5TFm6Q3IU4Mmf27oh4nDu6N4KDBnBpBT/6gL iWZ323FE0dIWYAoEsv3HGE7KM8uFiYVuFuXclQ92oFb/2byD5qsf1LkacXxSDHaJ 7MBt7ldiLjZu+OckKtt2CQMAwWvmha9i0/BPyBdB9g9xzEhehfZwmxooc= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:to :from:subject:message-id:date:mime-version:content-type; s= default; bh=hgrSN7J69/95sKfkNqHPtab5X6g=; b=vTIPV35YJMI3yvFLIWCg AfDxiyLH0pftsZh3EUMPUctOaLXN6QYqiFmH10Y/qj3+7PzUqpISl8ArG24lwwCi RCU/+uLCRkjSJUA5jdAm3bhQByJ7FAzdNaXZ9XQ8Glbih7BERgIzeCoR8bwCpFO2 dYtJsFzZpT7vQVv8ulc6ps8= Received: (qmail 101172 invoked by alias); 17 Mar 2017 17:06:37 -0000 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 Received: (qmail 101150 invoked by uid 89); 17 Mar 2017 17:06:37 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-26.9 required=5.0 tests=BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RP_MATCHES_RCVD, SPF_PASS autolearn=ham version=3.3.2 spammy= X-HELO: foss.arm.com Received: from foss.arm.com (HELO foss.arm.com) (217.140.101.70) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 17 Mar 2017 17:06:35 +0000 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.72.51.249]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id B0473687 for ; Fri, 17 Mar 2017 10:06:34 -0700 (PDT) Received: from e105689-lin.cambridge.arm.com (e105689-lin.cambridge.arm.com [10.2.207.32]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 404183F2E5; Fri, 17 Mar 2017 10:06:34 -0700 (PDT) To: gcc-patches From: "Richard Earnshaw (lists)" Subject: [aarch64] PR target/80052 Fix typo in aarch64.opt Message-ID: <521f4f08-8747-f2db-c5fb-58be2adc00ed@arm.com> Date: Fri, 17 Mar 2017 17:06:32 +0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.7.0 MIME-Version: 1.0 Fixes the reported typo in aarch64.opt (dummping -> dumping). Committed as obvious. * aarch64.opt(verbose-cost-dump): Fix typo. diff --git a/gcc/config/aarch64/aarch64.opt b/gcc/config/aarch64/aarch64.opt index 54368848bbb249949921a3018d927c4bd61b1fbd..942a7d558f26f0c8c18b0a94f4f92c575e06f057 100644 --- a/gcc/config/aarch64/aarch64.opt +++ b/gcc/config/aarch64/aarch64.opt @@ -187,4 +187,4 @@ single precision and to 32 bits for double precision. mverbose-cost-dump Common Undocumented Var(flag_aarch64_verbose_cost) -Enables verbose cost model dummping in the debug dump files. +Enables verbose cost model dumping in the debug dump files.