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
This commit is contained in:
parent
97981791bc
commit
ca895f7d91
2 changed files with 5 additions and 5 deletions
|
@ -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.
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue