h8300.c (print_operand): Remove support for operand character 'u'.
authorKazu Hirata <kazu@cs.umass.edu>
Wed, 11 Jun 2003 01:48:54 +0000 (01:48 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Wed, 11 Jun 2003 01:48:54 +0000 (01:48 +0000)
* config/h8300/h8300.c (print_operand): Remove support for
operand character 'u'.

From-SVN: r67745

gcc/ChangeLog
gcc/config/h8300/h8300.c

index 501522c0fbfe141bc3075b8f83bffa27f77fe3b3..cd55e8e0693e453522968fbc4e0b81c47fd7d988 100644 (file)
@@ -1,3 +1,8 @@
+2003-06-10  Kazu Hirata  <kazu@cs.umass.edu>
+
+       * config/h8300/h8300.c (print_operand): Remove support for
+       operand character 'u'.
+
 2003-06-10  Nathanael Nerode  <neroden@gcc.gnu.org>
 
        * configure.in: Fix typo.
index ae01d281795609637cd81bf69bdf948a9494f443..ed7afcd2952ee24e5596baf116ca3e7e285644d5 100644 (file)
@@ -1478,11 +1478,6 @@ print_operand (file, x, code)
       else
        fprintf (file, "%s", byte_reg (x, 1));
       break;
-    case 'u':
-      if (GET_CODE (x) != CONST_INT)
-       abort ();
-      fprintf (file, "%ld", INTVAL (x));
-      break;
     case 'w':
       if (GET_CODE (x) == CONST_INT)
        fprintf (file, "#%ld", INTVAL (x) & 0xff);