From patchwork Mon Feb 10 11:27:07 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kyrylo Tkachov X-Patchwork-Id: 318748 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]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 1B5A12C00AD for ; Mon, 10 Feb 2014 22:27:20 +1100 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :message-id:date:from:mime-version:to:cc:subject:content-type; q=dns; s=default; b=K0ZIMH/YNNM6P4rbl4U7c20UEVA0YU9aEOnN3fGB9pz GB6yuGYZpXmhlUk/Tfa+FLWG7wP+4yrvBxYY+KIqcnB/wwYv/sm4scgtKfSSfhQA Llv+KJtjdFAmRlDLTypwnvGWizbDy/V5Nud0wquMFWRbGRZ91Qbu86vdeVml6/2M = 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 :message-id:date:from:mime-version:to:cc:subject:content-type; s=default; bh=o+YmJT6YUCsoDnF4qd/SnsLwxf8=; b=Gkfz5MAyjM5JP7hSs RDhRiUtdzHJs9EaCTl+qq16+iqvWTboqgwFGX9eGKA8zrEaE4bLZjr1TEKy1vzX4 FhL419z6OLSPT2ZXAtLVy/dfnOHWdPsKxdgZaVJawANGcMDyknkcxJ4SHGf5cmjZ tX5Vnqa7zBmjMdaurALKHOz9YQ= Received: (qmail 6380 invoked by alias); 10 Feb 2014 11:27:13 -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 6369 invoked by uid 89); 10 Feb 2014 11:27:12 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=AWL, BAYES_00, RCVD_IN_DNSWL_LOW, SPF_PASS autolearn=ham version=3.3.2 X-HELO: service87.mimecast.com Received: from service87.mimecast.com (HELO service87.mimecast.com) (91.220.42.44) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 10 Feb 2014 11:27:11 +0000 Received: from cam-owa2.Emea.Arm.com (fw-tnat.cambridge.arm.com [217.140.96.21]) by service87.mimecast.com; Mon, 10 Feb 2014 11:27:09 +0000 Received: from [10.1.208.24] ([10.1.255.212]) by cam-owa2.Emea.Arm.com with Microsoft SMTPSVC(6.0.3790.3959); Mon, 10 Feb 2014 11:27:07 +0000 Message-ID: <52F8B78B.3060002@arm.com> Date: Mon, 10 Feb 2014 11:27:07 +0000 From: Kyrill Tkachov User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130804 Thunderbird/17.0.8 MIME-Version: 1.0 To: GCC Patches CC: Marcus Shawcroft Subject: [PATCH][AArch64][committed] Fix typo in aarch64.c X-MC-Unique: 114021011270900701 X-IsSubscribed: yes Hi all, I've committed the attached typo fix as obvious as r207654. Cheers, Kyrill 2014-02-10 Kyrylo Tkachov * config/aarch64/aarch64.c (aarch64_override_options): Fix typo from coretex to cortex. diff --git a/gcc/config/aarch64/aarch64.c b/gcc/config/aarch64/aarch64.c index 16c51a8..784bfa3 100644 --- a/gcc/config/aarch64/aarch64.c +++ b/gcc/config/aarch64/aarch64.c @@ -5244,7 +5244,7 @@ aarch64_override_options (void) /* If the user did not specify a processor, choose the default one for them. This will be the CPU set during configuration using - --with-cpu, otherwise it is "coretex-a53". */ + --with-cpu, otherwise it is "cortex-a53". */ if (!selected_cpu) { selected_cpu = &all_cores[TARGET_CPU_DEFAULT & 0x3f];