Commit ca895f7d by Kazu Hirata Committed by Kazu Hirata

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
parent 97981791
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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment