summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryce McKinlay <bryce@waitaki.otago.ac.nz>2001-11-16 03:05:10 +0000
committerBryce McKinlay <bryce@gcc.gnu.org>2001-11-16 03:05:10 +0000
commite790b36a7ccd314b353f037d00596c820abf59c4 (patch)
tree844621b685e1be259ffc7ea7d695a333fac2522e
parent5237fc07208ff956092f31972289c0ce67d817ce (diff)
downloadgcc-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/ChangeLog6
-rw-r--r--gcc/config/i386/i386.md2
-rw-r--r--gcc/config/s390/s390.md2
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);