Commit 9c1f1e55 by Andrew Pinski Committed by Andrew Pinski

re PR target/33347 (gcc.c-torture/compile/20000804-1.c ICEs at -O3 -funroll-loops)

2007-09-28  Andrew Pinski  <andrew_pinski@playstation.sony.com>

        PR target/33347
        * config/spu/spu.c (spu_expand_insv): Call copy_rtx on the second
        argument to gen_selb.

From-SVN: r128874
parent 9c7e83c1
2007-09-28 Andrew Pinski <andrew_pinski@playstation.sony.com>
PR target/33347
* config/spu/spu.c (spu_expand_insv): Call copy_rtx on the second
argument to gen_selb.
2007-09-28 Chao-ying Fu <fu@mips.com>
* libgcc-std.ver: Add fixed-point routines to GCC_4.3.0 section.
......@@ -637,7 +637,7 @@ spu_expand_insv (rtx ops[])
}
}
else
emit_insn (gen_selb (dst, dst, shift_reg, mask));
emit_insn (gen_selb (dst, copy_rtx (dst), shift_reg, mask));
}
......
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