* config/h8300/h8300.c (output_logical_op): Fix a warning.

From-SVN: r60769
This commit is contained in:
Kazu Hirata 2003-01-02 02:19:59 +00:00 committed by Kazu Hirata
parent 62d2eed656
commit dc5f17ecee
2 changed files with 5 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2003-01-01 Kazu Hirata <kazu@cs.umass.edu>
* config/h8300/h8300.c (output_logical_op): Fix a warning.
2003-01-01 Neil Booth <neil@daikokuya.co.uk>
* config/darwin-protos.h, config/c4x/c4x-protos.h,

View File

@ -2203,8 +2203,7 @@ output_logical_op (mode, operands)
&& code == AND
&& (det & 0xffff0000) == 0xff000000)
{
sprintf (insn_buf, "extu.w\t%%e0", opname);
output_asm_insn (insn_buf, operands);
output_asm_insn ("extu.w\t%e0", operands);
}
else if (TARGET_H8300H || TARGET_H8300S)
{