From patchwork Fri Jul 10 09:46:00 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kyrylo Tkachov X-Patchwork-Id: 493709 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 953A91402B0 for ; Fri, 10 Jul 2015 19:46:19 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b=sMDPVaWh; 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 :message-id:date:from:mime-version:to:subject:content-type; q= dns; s=default; b=q9/ElBHaNGTHscmfi7Y5rV76hlE6fbQHrInNaUaf2YSNd4 F8rWQtJbBLBjDSm0wiUdp0F6W51ICwXm2UgzMYPmyVOeL3SHhPMNPiYwxi2lB5Ug Dz4EEeJGvTDi2H7mKLY+mRE06ExKUXCrJ675kejs9vzjlN6AAQJCUcx32tIN4= 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=dBVizgBYrcNU4sG1WQKTMd9uWTQ=; b=sMDPVaWhCw84Z2jRplw9 M7GJ6wxawhTpm9sGrm/JgfLcbAE5wZg5CrYSx00O6wQbnrYU/hzE7MBUNaGoFRGh jeYfGXY5RvB8Oi7cHNY3l+sqwrkWmbLJug7UoT3fS5BtJSkRG1z6gKcSgczi8VG2 J5YIaPfZaYteYkcFIL0VhiM= Received: (qmail 55548 invoked by alias); 10 Jul 2015 09:46:12 -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 55539 invoked by uid 89); 10 Jul 2015 09:46:11 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.6 required=5.0 tests=AWL, BAYES_00, SPF_PASS autolearn=ham version=3.3.2 X-HELO: eu-smtp-delivery-143.mimecast.com Received: from eu-smtp-delivery-143.mimecast.com (HELO eu-smtp-delivery-143.mimecast.com) (207.82.80.143) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 10 Jul 2015 09:46:10 +0000 Received: from cam-owa1.Emea.Arm.com (fw-tnat.cambridge.arm.com [217.140.96.140]) by eu-smtp-1.mimecast.com with ESMTP id uk-mta-34-w-NJB3-0Twm8RC4XFu8fcA-1; Fri, 10 Jul 2015 10:46:03 +0100 Received: from [10.2.207.50] ([10.1.2.79]) by cam-owa1.Emea.Arm.com with Microsoft SMTPSVC(6.0.3790.3959); Fri, 10 Jul 2015 10:46:00 +0100 Message-ID: <559F9458.6070201@arm.com> Date: Fri, 10 Jul 2015 10:46:00 +0100 From: Kyrill Tkachov User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.2.0 MIME-Version: 1.0 To: GCC Patches Subject: [PATCH][obvious] Fix typos above expand_cond_expr_using_cmove X-MC-Unique: w-NJB3-0Twm8RC4XFu8fcA-1 X-IsSubscribed: yes Hi all, As subject says. Committed as obvious with r225659. Thanks, Kyrill 2015-07-10 Kyrylo Tkachov * expr.c (expand_cond_expr_using_cmove): Fix typos in comment above function. diff --git a/gcc/expr.c b/gcc/expr.c index 34930c5..6f6ee9d 100644 --- a/gcc/expr.c +++ b/gcc/expr.c @@ -7897,9 +7897,9 @@ expand_expr_real (tree exp, rtx target, machine_mode tmode, } /* Try to expand the conditional expression which is represented by - TREEOP0 ? TREEOP1 : TREEOP2 using conditonal moves. If succeseds - return the rtl reg which repsents the result. Otherwise return - NULL_RTL. */ + TREEOP0 ? TREEOP1 : TREEOP2 using conditonal moves. If it succeeds + return the rtl reg which represents the result. Otherwise return + NULL_RTX. */ static rtx expand_cond_expr_using_cmove (tree treeop0 ATTRIBUTE_UNUSED,