OSDN Git Service

* config/h8300/h8300.c (print_operand): Remove support for
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 11 Jun 2003 01:48:54 +0000 (01:48 +0000)
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 11 Jun 2003 01:48:54 +0000 (01:48 +0000)
operand character 'u'.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@67745 138bc75d-0d04-0410-961f-82ee72b054a4

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

index 501522c..cd55e8e 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 ae01d28..ed7afcd 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);