From: Steve Ellcey Date: Sat, 3 Feb 2007 00:44:21 +0000 (+0000) Subject: * config/ia64/ia64.c (ia64_print_operand): Fix compare strings. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=86ad1da0d37954a467a6045b82fb4ba30ef39e23;p=gcc.git * config/ia64/ia64.c (ia64_print_operand): Fix compare strings. From-SVN: r121530 --- 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 + + * 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 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;