Commit 84289c76 by Eric Botcazou Committed by Eric Botcazou

re PR target/14343 (internal error while using vector instructions [gcc 3.4.0…

re PR target/14343 (internal error while using vector instructions [gcc 3.4.0 20040225 (prerelease)].)

	PR target/14343
	* config/i386/i386.md (movv2di_internal): Conditionalize on
	TARGET_SSE, not TARGET_SSE2.

From-SVN: r79016
parent 64a3ee6b
2004-03-06 Eric Botcazou <ebotcazou@libertysurf.fr>
PR target/14343
* config/i386/i386.md (movv2di_internal): Conditionalize on
TARGET_SSE, not TARGET_SSE2.
2004-03-05 Chris Demetriou <cgd@broadcom.com>
* config.gcc (mips64orion-*-elf*, mips64orionel-*-elf*): Delete
......
......@@ -18593,7 +18593,7 @@
(define_insn "movv2di_internal"
[(set (match_operand:V2DI 0 "nonimmediate_operand" "=x,x,m")
(match_operand:V2DI 1 "vector_move_operand" "C,xm,x"))]
"TARGET_SSE2"
"TARGET_SSE"
{
switch (which_alternative)
{
......
2004-03-06 Eric Botcazou <ebotcazou@libertysurf.fr>
* gcc.dg/i386-sse-8.c: New test.
2004-03-06 Eric Botcazou <ebotcazou@libertysurf.fr>
PR c/14114
* gcc.dg/decl-5.c: New test.
......
/* PR target/14313 */
/* Origin: <Pawe Sikora <pluto@ds14.agh.edu.pl> */
/* { dg-do compile } */
/* { dg-options "-march=pentium3" { target i?86-*-* x86_64-*-* } } */
int main()
{
typedef int v __attribute__ ((mode(V2DI)));
v a, b;
a = b;
return 0;
}
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