From ca895f7d91164ee9944487cb2d86cee969094482 Mon Sep 17 00:00:00 2001 From: Kazu Hirata Date: Wed, 11 Jun 2003 01:48:54 +0000 Subject: [PATCH] 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 --- gcc/ChangeLog | 5 +++++ gcc/config/h8300/h8300.c | 5 ----- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 501522c0fbf..cd55e8e0693 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2003-06-10 Kazu Hirata + + * config/h8300/h8300.c (print_operand): Remove support for + operand character 'u'. + 2003-06-10 Nathanael Nerode * configure.in: Fix typo. diff --git a/gcc/config/h8300/h8300.c b/gcc/config/h8300/h8300.c index ae01d281795..ed7afcd2952 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); -- 2.30.2