aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/config/ia64/ia64.c12
2 files changed, 16 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 38dd30e..dc35247 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 aebfc1a..ead7f66 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;