diff options
author | gerald <gerald@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-01-07 19:09:44 +0000 |
---|---|---|
committer | gerald <gerald@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-01-07 19:09:44 +0000 |
commit | 0ec244e1946e091dd34ef124d4683dc292115906 (patch) | |
tree | 619211d8e38c04d1840cd5ede6a713b0b8456de1 /gcc/jump.c | |
parent | 8e98892d68c1098165edfdac2499157f788c7eac (diff) | |
download | gcc-0ec244e1946e091dd34ef124d4683dc292115906.tar.gz |
* jump.c (reversed_comparison_code_parts): Fix typo introduced by
the previous change.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@38780 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/jump.c')
-rw-r--r-- | gcc/jump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/jump.c b/gcc/jump.c index 6fa1f339187..1716f073107 100644 --- a/gcc/jump.c +++ b/gcc/jump.c @@ -1724,7 +1724,7 @@ reversed_comparison_code_parts (code, arg0, arg1, insn) Give it priority over everything else to allow machine description to do tricks. */ #ifdef REVERSIBLE_CC_MODE - if (GET_MODE_CLASS (mode) == MODE_CC) + if (GET_MODE_CLASS (mode) == MODE_CC && REVERSIBLE_CC_MODE (mode)) { #ifdef REVERSE_CONDITION |