[Bug target/35839] Altivec with the vectorizer causes an ICE in rs6000_check_sdmode

2008-04-06 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2008-04-06 19:32 --- Simple testcase: void foo (float a[32], float b[2][32]) { int i; for (i = 0; i < 32; i++) a[i] = (b[0][i] > b[1][i]) ? b[0][i] : b[1][i]; } Compile with -O2 -maltivec -ftree-vectorize and you get the failure

[Bug target/35839] Altivec with the vectorizer causes an ICE in rs6000_check_sdmode

2008-04-06 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2008-04-06 19:19 --- Since powerpc-apple-darwin9 enables Altivec by default, the vectorizer happens in libgfortran. Almost all the vectorizer tests are now failing too. -- pinskia at gcc dot gnu dot org changed: What