* config/ia64/ia64.c (ia64_print_operand): Fix compare strings.
authorSteve Ellcey <sje@cup.hp.com>
Sat, 3 Feb 2007 00:44:21 +0000 (00:44 +0000)
committerSteve Ellcey <sje@gcc.gnu.org>
Sat, 3 Feb 2007 00:44:21 +0000 (00:44 +0000)
From-SVN: r121530

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

index 38dd30edfe18a3f3203efe0ebd38f4d44db7a169..dc35247b2b41cf4ab634cd8eb21db32be0546c61 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 aebfc1ad32db698252f5955413f60d9b3554e4cb..ead7f6652655788601e773896d8849111805f6e1 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;