Files
UnrealEngine/Engine/Source/ThirdParty/Intel/ISPC/ispc-1.21.0/tests/lit-tests/1762.ispc
2025-05-18 13:04:45 +08:00

10 lines
246 B
Plaintext

// RUN: %{ispc} --target=avx512skx-x16 %s > %t 2>&1
// REQUIRES: X86_ENABLED
bool e[4][20][16];
void a() {
for (int16 b = 0; b < 4; b++)
for (int8 c = 0; c < 20; c++)
foreach (d = 0...16)
e[b][c][d] = 0;
}