diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2003-06-11 01:48:54 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2003-06-11 01:48:54 +0000 |
commit | ca895f7d91164ee9944487cb2d86cee969094482 (patch) | |
tree | dd9792eb6e7c1600d7fc12a1b0cbd8fe0c2e7e74 /gcc | |
parent | 97981791bc01d045ecdc4d2578efe03808098c9c (diff) | |
download | gcc-ca895f7d91164ee9944487cb2d86cee969094482.zip gcc-ca895f7d91164ee9944487cb2d86cee969094482.tar.gz gcc-ca895f7d91164ee9944487cb2d86cee969094482.tar.bz2 |
h8300.c (print_operand): Remove support for operand character 'u'.
* config/h8300/h8300.c (print_operand): Remove support for
operand character 'u'.
From-SVN: r67745
Diffstat (limited to 'gcc')
-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); |