mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-04 22:51:26 +08:00
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
This commit is contained in:
parent
b49e9f7a3d
commit
19d892fdb3
@ -1,3 +1,7 @@
|
||||
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>
|
||||
|
||||
* config/rs6000/rs6000.c (rs6000_emit_stack_reset): Return generated
|
||||
|
@ -873,8 +873,8 @@
|
||||
|
||||
if (which_alternative == 1)
|
||||
{
|
||||
operands[2] = XVECEXP (operands[1], 0, 1);
|
||||
operands[1] = XVECEXP (operands[1], 0, 0);
|
||||
operands[2] = XVECEXP (operands[1], 0, TARGET_BIG_ENDIAN ? 0 : 1);
|
||||
operands[1] = XVECEXP (operands[1], 0, TARGET_BIG_ENDIAN ? 1 : 0);
|
||||
}
|
||||
|
||||
return alt[which_alternative];
|
||||
|
Loading…
x
Reference in New Issue
Block a user