diff options
author | Jeffrey A Law <law@cygnus.com> | 1999-01-03 22:03:47 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1999-01-03 15:03:47 -0700 |
commit | 3b0d546a2bd7685ef25bbbee124409ab6147c1ea (patch) | |
tree | 697f54000d3ad514b3d27d85a9a50cc4a531c127 | |
parent | 362cc3d434b402148d579551c6f3ff4d4798a296 (diff) | |
download | gcc-3b0d546a2bd7685ef25bbbee124409ab6147c1ea.zip gcc-3b0d546a2bd7685ef25bbbee124409ab6147c1ea.tar.gz gcc-3b0d546a2bd7685ef25bbbee124409ab6147c1ea.tar.bz2 |
optabs.c (emit_cmp_and_jump_insns): Use CONSTANT_P canonicalizing RTL for a compare/jump sequence.
* optabs.c (emit_cmp_and_jump_insns): Use CONSTANT_P canonicalizing
RTL for a compare/jump sequence.
From-SVN: r24472
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/optabs.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1e22252..81a7398 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Sun Jan 3 23:00:42 1999 Jeffrey A Law (law@cygnus.com) + + * optabs.c (emit_cmp_and_jump_insns): Use CONSTANT_P canonicalizing + RTL for a compare/jump sequence. + Sun Jan 3 22:58:15 1999 Michael Hayes <m.hayes@elec.canterbury.ac.nz> * optabs.c (emit_cmp_insn): Abort if asked to emit non-canonical RTL diff --git a/gcc/optabs.c b/gcc/optabs.c index e57a8fc..0d30053 100644 --- a/gcc/optabs.c +++ b/gcc/optabs.c @@ -2950,7 +2950,7 @@ emit_cmp_and_jump_insns (x, y, comparison, size, mode, unsignedp, align, label) rtx op0; rtx op1; - if (GET_CODE (x) == CONST_INT) + if (CONSTANT_P (x)) { /* Swap operands and condition to ensure canonical RTL. */ op0 = y; |