Commit b5829a84 by Paul Koning Committed by Paul Koning

lower-subreg.c (resolve_shift_zext): Delete conditional code for…

lower-subreg.c (resolve_shift_zext): Delete conditional code for WORDS_BIG_ENDIAN != BYTES_BIG_ENDIAN.

* lower-subreg.c (resolve_shift_zext): Delete conditional code for
WORDS_BIG_ENDIAN != BYTES_BIG_ENDIAN.

From-SVN: r165703
parent 46935749
2010-10-19 Paul Koning <pkoning@equallogic.com>
* lower-subreg.c (resolve_shift_zext): Delete conditional code for
WORDS_BIG_ENDIAN != BYTES_BIG_ENDIAN.
2010-10-19 Richard Henderson <rth@redhat.com>
* config/ia64/ia64.md (fmasf4, *fmssf4, *nfmasf4): New.
......@@ -1008,13 +1008,6 @@ resolve_shift_zext (rtx insn)
offset2 = UNITS_PER_WORD * (1 - dest_reg_num);
src_offset = UNITS_PER_WORD * src_reg_num;
if (WORDS_BIG_ENDIAN != BYTES_BIG_ENDIAN)
{
offset1 += UNITS_PER_WORD - 1;
offset2 += UNITS_PER_WORD - 1;
src_offset += UNITS_PER_WORD - 1;
}
start_sequence ();
dest_reg = simplify_gen_subreg_concatn (word_mode, SET_DEST (set),
......
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