From patchwork Mon Jan 13 15:59:58 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kyrylo Tkachov X-Patchwork-Id: 310028 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 DCAEC2C0084 for ; Tue, 14 Jan 2014 03:00:19 +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:subject:content-type; q= dns; s=default; b=iGj0PcEUWL/vVcZTJbYlt1YJ3xSyFj/ajI6JzTcf+uEXgs ypJEEDyKZfGteOwmVmsgzNy8gG9aeOkfG/LkmZcfMTfuIpnCUVpqn5BZroDzKhpL rcHMi8BaLZ6uolj4DbXjh75m2Sv9tz3yEnv7yVTq1gxLelzKh+7vnWzij7ocE= 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:subject:content-type; s= default; bh=TvFoh3jwlHvafB3ld/DyPAeW6ng=; b=jPN+CoXX3Z99GIPy7VER MLu4CvadDnQq031YS9DuPtQHlBUiEbF2NPZWFhoOpGcM0fE6dKSB5mhsTq8Gc7mO YqdPOLb9DcTVu/6svRASF5zEeMhwSTj5EqfPv39mYndjusrLuE1V1EyIj5iVYL5y 1I2WUf4sHBpy7L9RbjpWITI= Received: (qmail 7854 invoked by alias); 13 Jan 2014 16:00:10 -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 7754 invoked by uid 89); 13 Jan 2014 16:00:02 -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, 13 Jan 2014 16:00:01 +0000 Received: from cam-owa2.Emea.Arm.com (fw-tnat.cambridge.arm.com [217.140.96.21]) by service87.mimecast.com; Mon, 13 Jan 2014 15:59:58 +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, 13 Jan 2014 15:59:58 +0000 Message-ID: <52D40D7E.8060503@arm.com> Date: Mon, 13 Jan 2014 15:59:58 +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 Subject: [PATCH][ARM][committed] Fix typo in arm.h X-MC-Unique: 114011315595807701 X-IsSubscribed: yes Hi all, I've committed this obvious typo fix to trunk as r206580. Kyrill 2014-01-13 Kyrylo Tkachov * config/arm/arm.h (MAX_CONDITIONAL_EXECUTE): Fix typo in description. diff --git a/gcc/config/arm/arm.h b/gcc/config/arm/arm.h index 409589d..b815488 100644 --- a/gcc/config/arm/arm.h +++ b/gcc/config/arm/arm.h @@ -189,7 +189,7 @@ extern arm_cc arm_current_cc; #define ARM_INVERSE_CONDITION_CODE(X) ((arm_cc) (((int)X) ^ 1)) -/* The maximaum number of instructions that is beneficial to +/* The maximum number of instructions that is beneficial to conditionally execute. */ #undef MAX_CONDITIONAL_EXECUTE #define MAX_CONDITIONAL_EXECUTE arm_max_conditional_execute ()