diff options
author | Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at> | 2001-01-07 20:09:44 +0100 |
---|---|---|
committer | Gerald Pfeifer <gerald@gcc.gnu.org> | 2001-01-07 19:09:44 +0000 |
commit | 3799607a1ae38f1d9c71455bf7d41740f9e8aa24 (patch) | |
tree | 619211d8e38c04d1840cd5ede6a713b0b8456de1 /gcc | |
parent | ab94bc48842d18b6e44546303904656fa37777f2 (diff) | |
download | gcc-3799607a1ae38f1d9c71455bf7d41740f9e8aa24.zip gcc-3799607a1ae38f1d9c71455bf7d41740f9e8aa24.tar.gz gcc-3799607a1ae38f1d9c71455bf7d41740f9e8aa24.tar.bz2 |
jump.c (reversed_comparison_code_parts): Fix typo introduced by the previous change.
* jump.c (reversed_comparison_code_parts): Fix typo introduced by
the previous change.
From-SVN: r38780
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/jump.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f766766..d19e5c9 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2001-01-07 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at> + + * jump.c (reversed_comparison_code_parts): Fix typo introduced by + the previous change. + Sun Jan 7 19:37:48 MET 2001 Jan Hubicka <jh@suse.cz> * jump.c (reversed_comparison_code_parts, reversed_comparison_code): @@ -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 |