Files
UnrealEngine/Engine/Source/ThirdParty/Intel/ISPC/ispc-1.21.0/tests/lit-tests/1447.ispc
2025-05-18 13:04:45 +08: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) {
}
}