OSDN Git Service

* config/ia64/ia64.c (ia64_print_operand): Fix compare strings.
authorsje <sje@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 3 Feb 2007 00:44:21 +0000 (00:44 +0000)
committersje <sje@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 3 Feb 2007 00:44:21 +0000 (00:44 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@121530 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/config/ia64/ia64.c

index 38dd30e..dc35247 100644 (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.
index aebfc1a..ead7f66 100644 (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;