From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 19:19:00 -0000 Message-ID: Subject: [PATCH, 4.6, committed] Fix typo in rs6000.md call pattern for AIX From: David Edelsohn To: GCC Patches Content-Type: text/plain; charset=ISO-8859-1 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org X-SW-Source: 2012-01/txt/msg00923.txt.bz2 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)));