diff options
author | Bryce McKinlay <bryce@waitaki.otago.ac.nz> | 2001-11-16 03:05:10 +0000 |
---|---|---|
committer | Bryce McKinlay <bryce@gcc.gnu.org> | 2001-11-16 03:05:10 +0000 |
commit | e790b36a7ccd314b353f037d00596c820abf59c4 (patch) | |
tree | 844621b685e1be259ffc7ea7d695a333fac2522e | |
parent | 5237fc07208ff956092f31972289c0ce67d817ce (diff) | |
download | gcc-e790b36a7ccd314b353f037d00596c820abf59c4.tar.gz |
s390.md: Remove ALIGN arg from emit_cmp_and_jump_insns call.
* config/s390/s390.md: Remove ALIGN arg from emit_cmp_and_jump_insns
call.
* config/i386/i386.md: Likewise.
From-SVN: r47080
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/i386/i386.md | 2 | ||||
-rw-r--r-- | gcc/config/s390/s390.md | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b500176e2c4..e3bc0b55dc2 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2001-11-16 Bryce McKinlay <bryce@waitaki.otago.ac.nz> + + * config/s390/s390.md: Remove ALIGN arg from emit_cmp_and_jump_insns + call. + * config/i386/i386.md: Likewise. + Thu Nov 15 21:40:16 2001 Richard Kenner <kenner@vlsi1.ultra.nyu.edu> * timevar.c (rtl.h): Include so get fancy abort. diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md index 5479fc19b85..cc9595f3431 100644 --- a/gcc/config/i386/i386.md +++ b/gcc/config/i386/i386.md @@ -13792,7 +13792,7 @@ emit_move_insn (out, const0_rtx); - emit_cmp_and_jump_insns (in, const0_rtx, EQ, 0, SImode, 1, 0, label); + emit_cmp_and_jump_insns (in, const0_rtx, EQ, 0, SImode, 1, label); emit_move_insn (hi, out); emit_insn (gen_subsi3 (out, out, in)); diff --git a/gcc/config/s390/s390.md b/gcc/config/s390/s390.md index 2c2881fc7cd..23ab209c25f 100644 --- a/gcc/config/s390/s390.md +++ b/gcc/config/s390/s390.md @@ -5212,7 +5212,7 @@ emit_move_insn (index, operands[0]); emit_insn (gen_subsi3 (index, index, operands[1])); emit_cmp_and_jump_insns (index, operands[2], GTU, NULL_RTX, SImode, 1, - 0, operands[4]); + operands[4]); if (Pmode != SImode) index = convert_to_mode (Pmode, index, 1); |