Files
UnrealEngine/Engine/Source/ThirdParty/Intel/ISPC/ispc-1.24.0/tests/lit-tests/warn-const-too-large.ispc
2025-05-18 13:04:45 +08: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;