diff options
| author | sje <sje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-02-03 00:44:21 +0000 |
|---|---|---|
| committer | sje <sje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-02-03 00:44:21 +0000 |
| commit | 01445752f1195301c1cc290fd0a8c854ad4444cb (patch) | |
| tree | d962c62e5cb58d1aab67cbe5514428cf13483f99 /gcc | |
| parent | ef0c059776449602ef6c0223c5f2fba434c05ed2 (diff) | |
| download | ppe42-gcc-01445752f1195301c1cc290fd0a8c854ad4444cb.tar.gz ppe42-gcc-01445752f1195301c1cc290fd0a8c854ad4444cb.zip | |
* config/ia64/ia64.c (ia64_print_operand): Fix compare strings.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@121530 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
| -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 38dd30edfe1..dc35247b2b4 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 aebfc1ad32d..ead7f665265 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; |

