Commit 974af6a5 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: r49187
parent 7a5bb7b8
2002-01-24 Kazu Hirata <kazu@hxi.com>
* config/h8300/h8300.c (print_operand): Remove support for
operand character 'U'.
2002-01-24 Andris Pavenis <pavenis@latnet.lv> 2002-01-24 Andris Pavenis <pavenis@latnet.lv>
* config/i386/t-djgpp: Use NATIVE_SYSTEM_HEADER_DIR. * config/i386/t-djgpp: Use NATIVE_SYSTEM_HEADER_DIR.
......
...@@ -935,7 +935,6 @@ const_costs (r, c) ...@@ -935,7 +935,6 @@ const_costs (r, c)
'X' handling. 'X' handling.
'S' print operand as a long word 'S' print operand as a long word
'T' print operand as a word 'T' print operand as a word
'U' if operand is incing/decing sp, print l, otherwise nothing.
'V' find the set bit, and print its number. 'V' find the set bit, and print its number.
'W' find the clear bit, and print its number. 'W' find the clear bit, and print its number.
'X' print operand as a byte 'X' print operand as a byte
...@@ -999,9 +998,6 @@ print_operand (file, x, code) ...@@ -999,9 +998,6 @@ print_operand (file, x, code)
rtx x; rtx x;
int code; int code;
{ {
/* This is used for communication between the 'P' and 'U' codes. */
static const char *last_p;
/* This is used for communication between codes V,W,Z and Y. */ /* This is used for communication between codes V,W,Z and Y. */
static int bitint; static int bitint;
...@@ -1056,9 +1052,6 @@ print_operand (file, x, code) ...@@ -1056,9 +1052,6 @@ print_operand (file, x, code)
else else
goto def; goto def;
break; break;
case 'U':
fprintf (file, "%s%s", names_big[REGNO (x)], last_p);
break;
case 'V': case 'V':
bitint = exact_log2 (INTVAL (x)); bitint = exact_log2 (INTVAL (x));
if (bitint == -1) if (bitint == -1)
......
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