diff options
author | Steve Ellcey <sje@cup.hp.com> | 2007-02-03 00:44:21 +0000 |
---|---|---|
committer | Steve Ellcey <sje@gcc.gnu.org> | 2007-02-03 00:44:21 +0000 |
commit | 86ad1da0d37954a467a6045b82fb4ba30ef39e23 (patch) | |
tree | d962c62e5cb58d1aab67cbe5514428cf13483f99 | |
parent | b3f580a6bbd5125c0d61042dd7661f452ac52d36 (diff) | |
download | gcc-86ad1da0d37954a467a6045b82fb4ba30ef39e23.zip gcc-86ad1da0d37954a467a6045b82fb4ba30ef39e23.tar.gz gcc-86ad1da0d37954a467a6045b82fb4ba30ef39e23.tar.bz2 |
* config/ia64/ia64.c (ia64_print_operand): Fix compare strings.
From-SVN: r121530
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/ia64/ia64.c | 12 |
2 files changed, 16 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 38dd30e..dc35247 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2007-02-02 Steve Ellcey <sje@cup.hp.com> + + * config/ia64/ia64.c (ia64_print_operand): Fix compare strings. + 2007-02-02 Ian Lance Taylor <iant@google.com> * expmed.c (expand_divmod): Add comment. diff --git a/gcc/config/ia64/ia64.c b/gcc/config/ia64/ia64.c index aebfc1a..ead7f66 100644 --- a/gcc/config/ia64/ia64.c +++ b/gcc/config/ia64/ia64.c @@ -4548,6 +4548,18 @@ ia64_print_operand (FILE * file, rtx x, int code) case ORDERED: str = "ord"; break; + case UNLT: + str = "nge"; + break; + case UNLE: + str = "ngt"; + break; + case UNGT: + str = "nle"; + break; + case UNGE: + str = "nlt"; + break; default: str = GET_RTX_NAME (GET_CODE (x)); break; |