From patchwork Wed May 24 14:12:18 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Preudhomme X-Patchwork-Id: 766492 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 3wXvVS3NM1z9sNj for ; Thu, 25 May 2017 00:12:31 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b="qsFbadDc"; dkim-atps=neutral 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=BB1RAl2tU2HMW0NvnBqtnLiSa9IMRjRq7EHBjf96CHcR7Pu+mp uaZfh2raPQAAnjI40bYBE5SujAxyMDV6TgQ0oZ98mgB2/VygPDqMdrAgFxwXjdXA t2JWuajVVh3A9C1VQsvTKF7/OijqW1v2K9eQBG3vyN2UWz5XKbr1MAXY0= 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=MvtjowGnedqeH9+PqDzzKY5BVHU=; b=qsFbadDcYMtbSzwYq05Y iC+ZHQXdGgI0AsJvHH9S9o/OUNY+33jB1EYNVlYneKGOdgLSwRwomrLVF0z0Yr7B zYhv/rGqwOQZy3Z1j9WkShhmyq6VaHEN4KjgwY/8vpvs2Nim9haBU0nonJUJjoO2 j/gbitZK9DekWsKou3cwC6Y= Received: (qmail 73513 invoked by alias); 24 May 2017 14:12:20 -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 73501 invoked by uid 89); 24 May 2017 14:12:19 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-25.9 required=5.0 tests=BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, KAM_LAZY_DOMAIN_SECURITY, RP_MATCHES_RCVD 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; Wed, 24 May 2017 14:12:18 +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 3506C2B for ; Wed, 24 May 2017 07:12:20 -0700 (PDT) Received: from [10.2.206.52] (usa-sjc-imap-foss1.foss.arm.com [10.72.51.249]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id D60F43F53D for ; Wed, 24 May 2017 07:12:19 -0700 (PDT) To: "gcc-patches@gcc.gnu.org" From: Thomas Preudhomme Subject: [PATCH, GCC/ARM] Fix typo in comment in arm_expand_prologue Message-ID: Date: Wed, 24 May 2017 15:12:18 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.8.0 MIME-Version: 1.0 X-IsSubscribed: yes Committed this obvious typo fix for a comment in arm_expand_prologue. ChangeLog entry is as follows: *** gcc/ChangeLog *** 2017-05-24 Thomas Preud'homme * config/arm/arm.c (arm_expand_prologue): Fix typo in comment. Best regards, Thomas diff --git a/gcc/config/arm/arm.c b/gcc/config/arm/arm.c index a465fc2b29f8ca4b0e5689c0c32025a5aa063e3a..62e4e89ef470a9f3fb2f751bea25c6711c29d6c9 100644 --- a/gcc/config/arm/arm.c +++ b/gcc/config/arm/arm.c @@ -21609,7 +21609,7 @@ arm_expand_prologue (void) { /* If no coprocessor registers are being pushed and we don't have to worry about a frame pointer then push extra registers to - create the stack frame. This is done is a way that does not + create the stack frame. This is done in a way that does not alter the frame layout, so is independent of the epilogue. */ int n; int frame;