From: Kazu Hirata Date: Wed, 11 Jun 2003 01:48:54 +0000 (+0000) Subject: h8300.c (print_operand): Remove support for operand character 'u'. X-Git-Tag: releases/gcc-3.4.0~5962 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ca895f7d91164ee9944487cb2d86cee969094482;p=thirdparty%2Fgcc.git 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 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 501522c0fbfe..cd55e8e0693e 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 ae01d2817956..ed7afcd2952e 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);