diff options
author | Bernd Schmidt <bernds@codesourcery.com> | 2010-07-27 21:52:39 +0000 |
---|---|---|
committer | Bernd Schmidt <bernds@gcc.gnu.org> | 2010-07-27 21:52:39 +0000 |
commit | 418e920fc6c08a3f9b20a6996980c7380cbac67c (patch) | |
tree | c3ffb1e215f4907529c744c4900ca89040e35856 /gcc/combine.c | |
parent | 5f20c6574d02381a0d928beda3eff69dc00af1cb (diff) | |
download | gcc-418e920fc6c08a3f9b20a6996980c7380cbac67c.zip gcc-418e920fc6c08a3f9b20a6996980c7380cbac67c.tar.gz gcc-418e920fc6c08a3f9b20a6996980c7380cbac67c.tar.bz2 |
rtl.def (DEBUG_INSN, [...]): Swap operands 4 and 5.
* rtl.def (DEBUG_INSN, INSN, JUMP_INSN, CALL_INSN, NOTE): Swap operands
4 and 5.
* rtl.h (PATTERN, INSN_LOCATOR, NOTE_DATA, NOTE_DELETED_LABEL_NAME,
NOTE_BLOCK, NOTE_EH_HANDLER, NOTE_BASIC_BLOCK, NOTE_VAR_LOCATION,
NOTE_KIND, LABEL_NUSES, LABEL_REFS): Adjust accordingly.
* gengtype.c (adjust_field_rtx_def): Swap operands 4 and 5 of
CODE_LABELs and NOTEs.
* caller-save.c (init_caller_save): Fix up gen_rtx_INSN call.
* combine.c (try_combine): Likewise.
* ira.c (setup_prohibited_mode_move_regs): Likewise.
* print-rtl.c (print_rtx): Start REG_NOTES on a new line.
From-SVN: r162602
Diffstat (limited to 'gcc/combine.c')
-rw-r--r-- | gcc/combine.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/combine.c b/gcc/combine.c index 0a1e787..ad96e03 100644 --- a/gcc/combine.c +++ b/gcc/combine.c @@ -2662,8 +2662,8 @@ try_combine (rtx i3, rtx i2, rtx i1, int *new_direct_jump_p) as I2 will not cause a problem. */ i1 = gen_rtx_INSN (VOIDmode, INSN_UID (i2), NULL_RTX, i2, - BLOCK_FOR_INSN (i2), INSN_LOCATOR (i2), - XVECEXP (PATTERN (i2), 0, 1), -1, NULL_RTX); + BLOCK_FOR_INSN (i2), XVECEXP (PATTERN (i2), 0, 1), + INSN_LOCATOR (i2), -1, NULL_RTX); SUBST (PATTERN (i2), XVECEXP (PATTERN (i2), 0, 0)); SUBST (XEXP (SET_SRC (PATTERN (i2)), 0), |