diff options
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/config/h8300/h8300.c | 5 |
2 files changed, 5 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 501522c..cd55e8e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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. diff --git a/gcc/config/h8300/h8300.c b/gcc/config/h8300/h8300.c index ae01d28..ed7afcd 100644 --- a/gcc/config/h8300/h8300.c +++ b/gcc/config/h8300/h8300.c @@ -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); |
