Files
UnrealEngine/Engine/Source/ThirdParty/Intel/ISPC/ispc-1.17.0/tests/lit-tests/1447.ispc
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

8 lines
300 B
Plaintext

// RUN: not %{ispc} -O0 -g %s > %t 2>&1
// RUN: FileCheck --input-file=%t %s
// CHECK-NOT: Please file a bug report at https://github.com/ispc/ispc/issues
export void compressPositions(uniform int clustersSize) {
for (uniform int i = programIndex; i < clustersSize; i += programCount) {
}
}