Move some tests that now pass with LLVM 3.0 from failing_tests to tests/

This commit is contained in:
Matt Pharr
2011-10-10 11:51:47 -07:00
parent a89e26d725
commit ecda4561bd
5 changed files with 0 additions and 0 deletions

16
tests/shuffle2-10.ispc Normal file
View File

@@ -0,0 +1,16 @@
/* failing due to llvm bug http://llvm.org/bugs/show_bug.cgi?id=10421 */
export uniform int width() { return programCount; }
export void f_fu(uniform float RET[], uniform float aFOO[], uniform float b) {
int8 aa = aFOO[programIndex];
int8 bb = aa + programCount;
int8 shuf = shuffle(aa, bb, 2*programIndex+(int)b-5);
//CO print("%\n%\n%\n%\n", aa, bb, 2*programIndex+(int)b-5, shuf);
RET[programIndex] = shuf;
}
export void result(uniform float RET[]) {
RET[programIndex] = 1 + 2*programIndex;
}