Commit 86ad1da0 by Steve Ellcey Committed by Steve Ellcey

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

From-SVN: r121530
parent b3f580a6
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.
......
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment