From patchwork Wed Jan 18 19:19:12 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: David Edelsohn X-Patchwork-Id: 136682 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 A7048B6EF1 for ; Thu, 19 Jan 2012 06:19:35 +1100 (EST) Comment: DKIM? See http://www.dkim.org DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=gcc.gnu.org; s=default; x=1327519176; h=Comment: DomainKey-Signature:Received:Received:Received:Received: MIME-Version:Received:Received:Date:Message-ID:Subject:From:To: Content-Type:Mailing-List:Precedence:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:Sender:Delivered-To; bh=Ehm3u/o fy4QcD0VFZr0EQthbeZ8=; b=eg3O6hPfvX6fALwzDMs4JPE4BLk5hrV7zSLP2vW AVlUXYh1SQbPnNmw1aO1LvVSPkBieJdiuiaMoXQEbX/661Pq7rQblvPgqcaaItUY 455URKaDUKyeEZ1leA3niFs0x36wasvTDC6A+GJIX/u0oJchCpUHgglTZeHrJvPp Ymqc= Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=default; d=gcc.gnu.org; h=Received:Received:X-SWARE-Spam-Status:X-Spam-Check-By:Received:Received:MIME-Version:Received:Received:Date:Message-ID:Subject:From:To:Content-Type:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=HUL8ifOV5qlMI3YisMfqq6CgTVxxFSuSVeL+vXP6v5AGnkJpex0nirZnkqjyuH VuEvQ49udclwH4FbvhIr4lS8173vZlCd0JguVLvIoFwJGMAvefVBLr0jti6aOLn7 JBQbh7j/q7ils0jnuVMQLwMBN6O3H+8Iiufd+WS0NbWnQ=; Received: (qmail 24551 invoked by alias); 18 Jan 2012 19:19:27 -0000 Received: (qmail 24536 invoked by uid 22791); 18 Jan 2012 19:19:26 -0000 X-SWARE-Spam-Status: No, hits=0.3 required=5.0 tests=AWL, BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, FREEMAIL_FROM, MEDICAL_SUBJECT, RCVD_IN_DNSWL_LOW X-Spam-Check-By: sourceware.org Received: from mail-tul01m020-f175.google.com (HELO mail-tul01m020-f175.google.com) (209.85.214.175) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 18 Jan 2012 19:19:13 +0000 Received: by obcwo8 with SMTP id wo8so5805321obc.20 for ; Wed, 18 Jan 2012 11:19:12 -0800 (PST) MIME-Version: 1.0 Received: by 10.182.131.71 with SMTP id ok7mr20203576obb.71.1326914352564; Wed, 18 Jan 2012 11:19:12 -0800 (PST) Received: by 10.182.29.233 with HTTP; Wed, 18 Jan 2012 11:19:12 -0800 (PST) Date: Wed, 18 Jan 2012 14:19:12 -0500 Message-ID: Subject: [PATCH, 4.6, committed] Fix typo in rs6000.md call pattern for AIX From: David Edelsohn To: GCC Patches 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 A backport of another patch introduced a cut-and-paste typo in one of the AIX call patterns, generating a DImode memory operand in 32 bit mode. Fixed with the following patch. - David * config/rs6000/rs6000.md (call_value_indirect_aix32): Fix typo in mode of operand[4]. Index: rs6000.md =================================================================== --- rs6000.md (revision 183273) +++ rs6000.md (working copy) @@ -12241,8 +12241,8 @@ " { operands[3] = gen_reg_rtx (SImode); - operands[4] = gen_rtx_MEM (DImode, - gen_rtx_PLUS (DImode, stack_pointer_rtx, + operands[4] = gen_rtx_MEM (SImode, + gen_rtx_PLUS (SImode, stack_pointer_rtx, GEN_INT (20)));