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
This commit is contained in:
Andrew Pinski 2007-09-28 22:41:20 +00:00 committed by Andrew Pinski
parent 9c7e83c1da
commit 9c1f1e5544
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
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.

View File

@ -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));
}