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

14
tests/max-uint-1.ispc Normal file
View File

@@ -0,0 +1,14 @@
export uniform int width() { return programCount; }
export void f_f(uniform float r[], uniform float a[]) {
unsigned int i = (unsigned int)a[programIndex];
r[programIndex] = max((unsigned int)2, i);
}
export void result(uniform float r[]) {
r[programIndex] = 1+programIndex;
r[0] = 2;
}