* config/ia64/ia64.c (ia64_print_operand): Fix compare strings.

From-SVN: r121530
This commit is contained in:
Steve Ellcey 2007-02-03 00:44:21 +00:00 committed by Steve Ellcey
parent b3f580a6bb
commit 86ad1da0d3
2 changed files with 16 additions and 0 deletions

View File

@ -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.

View File

@ -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;