diff options
author | Kazu Hirata <kazu@hxi.com> | 2001-07-13 18:32:30 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2001-07-13 18:32:30 +0000 |
commit | 5a4aeb03fa1133349f34dc1132cd5c231d2736e1 (patch) | |
tree | 6319a092f7667a67b480252f2182036b82a57621 /gcc | |
parent | 92e78e59d60a077944850b1ed06312f977bb9eef (diff) | |
download | gcc-5a4aeb03fa1133349f34dc1132cd5c231d2736e1.zip gcc-5a4aeb03fa1133349f34dc1132cd5c231d2736e1.tar.gz gcc-5a4aeb03fa1133349f34dc1132cd5c231d2736e1.tar.bz2 |
jump.c (reversed_comparison_code_parts): Fix comment typos.
2001-07-13 Kazu Hirata <kazu@hxi.com>
* jump.c (reversed_comparison_code_parts): Fix comment typos.
From-SVN: r43990
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/jump.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 242c491..db0125f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2001-07-13 Kazu Hirata <kazu@hxi.com> + + * jump.c (reversed_comparison_code_parts): Fix comment typos. + 2001-07-13 H.J. Lu (hjl@gnu.org) * config/elfos.h (UNIQUE_SECTION): Enable .bss section. @@ -1702,7 +1702,7 @@ jump_back_p (insn, target) && rtx_renumbered_equal_p (XEXP (cinsn, 1), XEXP (ctarget, 1))); } -/* Given a comparison (CODE ARG0 ARG1), inside a insn, INSN, return an code +/* Given a comparison (CODE ARG0 ARG1), inside an insn, INSN, return a code of reversed comparison if it is possible to do so. Otherwise return UNKNOWN. UNKNOWN may be returned in case we are having CC_MODE compare and we don't know whether it's source is floating point or integer comparison. Machine @@ -1737,7 +1737,7 @@ reversed_comparison_code_parts (code, arg0, arg1, insn) } #endif - /* Try few special cases based on the comparison code. */ + /* Try a few special cases based on the comparison code. */ switch (code) { case GEU: |