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

10
tests/max-uint.ispc Normal file
View File

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