From patchwork Fri Jul 5 09:28:35 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Quinot X-Patchwork-Id: 257064 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 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "localhost", Issuer "www.qmailtoaster.com" (not verified)) by ozlabs.org (Postfix) with ESMTPS id 048952C008F for ; Fri, 5 Jul 2013 19:28:45 +1000 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:date :from:to:subject:message-id:mime-version:content-type; q=dns; s= default; b=NJ+2pzctLV/nz/SdBz21L1IbPgMQwz+wQLulzBujjklgTQIOInBXw N5MiMuvSJZL06hfUJuRIlpWNzcl87HCD6iCao4McA2ft2S7HezHdoamSnabfAEhG epivW3TFGZL1LpgjTACEU8l+8RTJk8mbGysu1o6ovnKhExQBF3uf3M= 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:date :from:to:subject:message-id:mime-version:content-type; s= default; bh=k+4R7p/47f1ADUKoad7egiqS+hs=; b=Wd88V3nIy+pOXUbX9JU0 suMXztxnPKD985LpoMCjNnIIYWIw602o+6lt8wt+RXoib8JOf+z6ow1rORNEvf9b 1AK3bf15djfMkqulK2cX9DNKRj/Q8tYSVJA1zghqqWrRuHO4l+drF0mKWZwkHVL7 UTZxCSh82YZdkd/KySYqei4= Received: (qmail 27468 invoked by alias); 5 Jul 2013 09:28:40 -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 27459 invoked by uid 89); 5 Jul 2013 09:28:39 -0000 X-Spam-SWARE-Status: No, score=-0.6 required=5.0 tests=AWL, BAYES_50 autolearn=ham version=3.3.1 Received: from malevil.act-europe.fr (HELO malevil.eu.adacore.com) (194.98.77.221) by sourceware.org (qpsmtpd/0.84/v0.84-167-ge50287c) with ESMTP; Fri, 05 Jul 2013 09:28:38 +0000 Received: by malevil.eu.adacore.com (Postfix, from userid 529) id 0C797BE0AC1; Fri, 5 Jul 2013 11:28:36 +0200 (CEST) Date: Fri, 5 Jul 2013 11:28:35 +0200 From: Thomas Quinot To: gcc-patches@gcc.gnu.org Subject: [PATCH] gcc/tree-complex.c: Fix minor typo in comment Message-ID: <20130705092835.GA15500@adacore.com> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) 2013-07-06 Thomas Quinot gcc/ * tree-complex.c: Fix minor typo in comment OK to commit? diff --git a/gcc/tree-complex.c b/gcc/tree-complex.c index c45ba19..acd0169 100644 --- a/gcc/tree-complex.c +++ b/gcc/tree-complex.c @@ -1476,7 +1476,7 @@ expand_complex_operations_1 (gimple_stmt_iterator *gsi) case EQ_EXPR: case NE_EXPR: /* Note, both GIMPLE_ASSIGN and GIMPLE_COND may have an EQ_EXPR - subocde, so we need to access the operands using gimple_op. */ + subcode, so we need to access the operands using gimple_op. */ inner_type = TREE_TYPE (gimple_op (stmt, 1)); if (TREE_CODE (inner_type) != COMPLEX_TYPE) return;