Commit ceebb5f5 by Ben Elliston Committed by Ben Elliston

* config/spu/spu.md (_mulv4si3): Remove unused local variables.

From-SVN: r119479
parent dd90d2b2
2006-12-04 Ben Elliston <bje@au.ibm.com>
* config/spu/spu.md (_mulv4si3): Remove unused local variables.
2006-12-03 Eric Christopher <echristo@apple.com> 2006-12-03 Eric Christopher <echristo@apple.com>
PR target/24598 PR target/24598
......
...@@ -1117,14 +1117,12 @@ ...@@ -1117,14 +1117,12 @@
(mult:V4SI (match_dup:V4SI 1) (mult:V4SI (match_dup:V4SI 1)
(match_dup:V4SI 2)))] (match_dup:V4SI 2)))]
{ {
HOST_WIDE_INT val = 0;
rtx a = operands[3]; rtx a = operands[3];
rtx b = operands[4]; rtx b = operands[4];
rtx c = operands[5]; rtx c = operands[5];
rtx d = operands[6]; rtx d = operands[6];
rtx op1 = simplify_gen_subreg (V8HImode, operands[1], V4SImode, 0); rtx op1 = simplify_gen_subreg (V8HImode, operands[1], V4SImode, 0);
rtx op2 = simplify_gen_subreg (V8HImode, operands[2], V4SImode, 0); rtx op2 = simplify_gen_subreg (V8HImode, operands[2], V4SImode, 0);
rtx op3 = simplify_gen_subreg (V8HImode, operands[3], V4SImode, 0);
emit_insn(gen_spu_mpyh(a, op1, op2)); emit_insn(gen_spu_mpyh(a, op1, op2));
emit_insn(gen_spu_mpyh(b, op2, op1)); emit_insn(gen_spu_mpyh(b, op2, op1));
emit_insn(gen_spu_mpyu(c, op1, op2)); emit_insn(gen_spu_mpyu(c, op1, op2));
......
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