* config/ia64/vect.md (vec_initv2si): Remove bad BIG_ENDIAN test.

From-SVN: r126995
This commit is contained in:
Steve Ellcey 2007-07-27 20:07:19 +00:00 committed by Steve Ellcey
parent da7d4908cd
commit e3d693e9a3
2 changed files with 5 additions and 4 deletions

View File

@ -1,3 +1,7 @@
2007-07-27 Steve Ellcey <sje@cup.hp.com>
* config/ia64/vect.md (vec_initv2si): Remove bad BIG_ENDIAN test.
2007-07-27 Richard Sandiford <richard@codesourcery.com>
* doc/invoke.texi (mdsp, mdspr2): Document the __mips_dsp,

View File

@ -801,10 +801,7 @@
if (GET_CODE (op1) == CONST_INT && GET_CODE (op2) == CONST_INT)
{
rtvec v = rtvec_alloc (2);
RTVEC_ELT (v, 0) = TARGET_BIG_ENDIAN ? op2 : op1;
RTVEC_ELT (v, 1) = TARGET_BIG_ENDIAN ? op1 : op2;;
x = gen_rtx_CONST_VECTOR (V2SImode, v);
x = gen_rtx_CONST_VECTOR (V2SImode, XVEC (operands[1], 0));
emit_move_insn (operands[0], x);
DONE;
}