Commit 19d892fd by Steve Ellcey Committed by Steve Ellcey

vect.md (*movv2sf_internal): Handle big endian case.

2009-06-03  Steve Ellcey  <sje@cup.hp.com>

	* config/ia64/vect.md (*movv2sf_internal): Handle big endian case.

From-SVN: r148142
parent b49e9f7a
2009-06-03 Steve Ellcey <sje@cup.hp.com>
* config/ia64/vect.md (*movv2sf_internal): Handle big endian case.
2009-06-03 Jakub Jelinek <jakub@redhat.com> 2009-06-03 Jakub Jelinek <jakub@redhat.com>
* config/rs6000/rs6000.c (rs6000_emit_stack_reset): Return generated * config/rs6000/rs6000.c (rs6000_emit_stack_reset): Return generated
......
...@@ -873,8 +873,8 @@ ...@@ -873,8 +873,8 @@
if (which_alternative == 1) if (which_alternative == 1)
{ {
operands[2] = XVECEXP (operands[1], 0, 1); operands[2] = XVECEXP (operands[1], 0, TARGET_BIG_ENDIAN ? 0 : 1);
operands[1] = XVECEXP (operands[1], 0, 0); operands[1] = XVECEXP (operands[1], 0, TARGET_BIG_ENDIAN ? 1 : 0);
} }
return alt[which_alternative]; return alt[which_alternative];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment