From: sje Date: Sat, 3 Feb 2007 00:44:21 +0000 (+0000) Subject: * config/ia64/ia64.c (ia64_print_operand): Fix compare strings. X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=01445752f1195301c1cc290fd0a8c854ad4444cb;p=thirdparty%2Fgcc.git * 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 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 38dd30edfe18..dc35247b2b41 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2007-02-02 Steve Ellcey + + * config/ia64/ia64.c (ia64_print_operand): Fix compare strings. + 2007-02-02 Ian Lance Taylor * expmed.c (expand_divmod): Add comment. diff --git a/gcc/config/ia64/ia64.c b/gcc/config/ia64/ia64.c index aebfc1ad32db..ead7f6652655 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;