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

6 lines
218 B
Plaintext

// RUN: %{ispc} --target=host --nowrap --nostdlib %s --emit-llvm-text -o - 2>&1 | FileCheck %s
// CHECK: Warning: Binary expression with type "const uniform int8" can't represent value.
int8 v = (int8)64 * (int8)32;