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

9 lines
266 B
Plaintext

// RUN: %{ispc} --target=host --nostdlib --nowrap -o - --emit-llvm-text %s 2>&1 | FileCheck %s
// CHECK-NOT: Assertion failed
void foo(uniform int32* uniform bTbase, varying int64 v64) {
foreach (i = 0 ... 100) {
v64 = (&((int64*)(bTbase)))[i];
}
}