public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [PATCH, 4.6, committed] Fix typo in rs6000.md call pattern for AIX
@ 2012-01-18 19:19 David Edelsohn
  0 siblings, 0 replies; only message in thread
From: David Edelsohn @ 2012-01-18 19:19 UTC (permalink / raw)
  To: GCC Patches

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)));

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2012-01-18 19:19 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-01-18 19:19 [PATCH, 4.6, committed] Fix typo in rs6000.md call pattern for AIX David Edelsohn

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).