aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKazu Hirata <kazu@hxi.com>2002-01-24 19:42:39 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2002-01-24 19:42:39 +0000
commit974af6a5941d2c858b6446eda1244605abfcb8ad (patch)
tree9f9e02a4840f64f5a02fc9b709dd256e3cf71435
parent7a5bb7b8486e8d56940af9e63eb2f28d78650c75 (diff)
downloadgcc-974af6a5941d2c858b6446eda1244605abfcb8ad.zip
gcc-974af6a5941d2c858b6446eda1244605abfcb8ad.tar.gz
gcc-974af6a5941d2c858b6446eda1244605abfcb8ad.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: r49187
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/config/h8300/h8300.c7
2 files changed, 5 insertions, 7 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 4390c9a..0d6baff 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+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>
* config/i386/t-djgpp: Use NATIVE_SYSTEM_HEADER_DIR.
diff --git a/gcc/config/h8300/h8300.c b/gcc/config/h8300/h8300.c
index 6770e03..af1cad8 100644
--- a/gcc/config/h8300/h8300.c
+++ b/gcc/config/h8300/h8300.c
@@ -935,7 +935,6 @@ const_costs (r, c)
'X' handling.
'S' print operand as a long 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.
'W' find the clear bit, and print its number.
'X' print operand as a byte
@@ -999,9 +998,6 @@ print_operand (file, x, code)
rtx x;
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. */
static int bitint;
@@ -1056,9 +1052,6 @@ print_operand (file, x, code)
else
goto def;
break;
- case 'U':
- fprintf (file, "%s%s", names_big[REGNO (x)], last_p);
- break;
case 'V':
bitint = exact_log2 (INTVAL (x));
if (bitint == -1)