Commit dc5f17ec by Kazu Hirata Committed by Kazu Hirata

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

From-SVN: r60769
parent 62d2eed6
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> 2003-01-01 Neil Booth <neil@daikokuya.co.uk>
* config/darwin-protos.h, config/c4x/c4x-protos.h, * config/darwin-protos.h, config/c4x/c4x-protos.h,
......
...@@ -2203,8 +2203,7 @@ output_logical_op (mode, operands) ...@@ -2203,8 +2203,7 @@ output_logical_op (mode, operands)
&& code == AND && code == AND
&& (det & 0xffff0000) == 0xff000000) && (det & 0xffff0000) == 0xff000000)
{ {
sprintf (insn_buf, "extu.w\t%%e0", opname); output_asm_insn ("extu.w\t%e0", operands);
output_asm_insn (insn_buf, operands);
} }
else if (TARGET_H8300H || TARGET_H8300S) else if (TARGET_H8300H || TARGET_H8300S)
{ {
......
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