From patchwork Wed Sep 15 14:53:40 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ian Lance Taylor X-Patchwork-Id: 64835 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]) by ozlabs.org (Postfix) with SMTP id 536F4B6F01 for ; Thu, 16 Sep 2010 00:53:59 +1000 (EST) Received: (qmail 12908 invoked by alias); 15 Sep 2010 14:53:56 -0000 Received: (qmail 12891 invoked by uid 22791); 15 Sep 2010 14:53:56 -0000 X-SWARE-Spam-Status: No, hits=-2.0 required=5.0 tests=AWL, BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, SPF_HELO_PASS, T_RP_MATCHES_RCVD, T_TVD_MIME_NO_HEADERS X-Spam-Check-By: sourceware.org Received: from smtp-out.google.com (HELO smtp-out.google.com) (216.239.44.51) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 15 Sep 2010 14:53:51 +0000 Received: from wpaz29.hot.corp.google.com (wpaz29.hot.corp.google.com [172.24.198.93]) by smtp-out.google.com with ESMTP id o8FErnXH015454 for ; Wed, 15 Sep 2010 07:53:49 -0700 Received: from pxi17 (pxi17.prod.google.com [10.243.27.17]) by wpaz29.hot.corp.google.com with ESMTP id o8FErm1h019393 for ; Wed, 15 Sep 2010 07:53:48 -0700 Received: by pxi17 with SMTP id 17so83295pxi.29 for ; Wed, 15 Sep 2010 07:53:48 -0700 (PDT) Received: by 10.142.204.8 with SMTP id b8mr1462926wfg.158.1284562428088; Wed, 15 Sep 2010 07:53:48 -0700 (PDT) Received: from coign.google.com ([66.109.106.2]) by mx.google.com with ESMTPS id n36sm1771283wfa.4.2010.09.15.07.53.45 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 15 Sep 2010 07:53:47 -0700 (PDT) From: Ian Lance Taylor To: gcc-patches@gcc.gnu.org Subject: Patch committed: Fix indentation Date: Wed, 15 Sep 2010 07:53:40 -0700 Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1 (gnu/linux) MIME-Version: 1.0 X-System-Of-Record: true X-IsSubscribed: yes 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 I noticed a minor case in i386.md where the indentation was wrong. Patch bootstrapped and tested on x86_64-unknown-linux-gnu. Committed as obvious. Ian 2010-09-15 Ian Lance Taylor * config/i386/i386.md (truncxf2): Fix indentation. Index: config/i386/i386.md =================================================================== --- config/i386/i386.md (revision 164305) +++ config/i386/i386.md (working copy) @@ -4336,9 +4336,9 @@ } else { - enum ix86_stack_slot slot = (virtuals_instantiated - ? SLOT_TEMP - : SLOT_VIRTUAL); + enum ix86_stack_slot slot = (virtuals_instantiated + ? SLOT_TEMP + : SLOT_VIRTUAL); operands[2] = assign_386_stack_local (mode, slot); } })