mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
a78e57fcca
See bug 40806: https://bugs.llvm.org/show_bug.cgi?id=40806 Reviewers: artem.tamazov, arsenm Differential Revision: https://reviews.llvm.org/D59786 llvm-svn: 357262
29 lines
813 B
ArmAsm
29 lines
813 B
ArmAsm
// RUN: not llvm-mc -arch=amdgcn -mcpu=tonga -show-encoding %s 2>&1 | FileCheck -check-prefix=NOVI %s
|
|
|
|
v_add_f16 v1, 0xfffff, v2
|
|
// NOVI: error: invalid operand for instruction
|
|
|
|
v_add_f16 v1, 0x10000, v2
|
|
// NOVI: error: invalid operand for instruction
|
|
|
|
v_add_f16 v1, 0xffffffffffff000f, v2
|
|
// NOVI: error: invalid operand for instruction
|
|
|
|
v_add_f16 v1, 0x1000ffff, v2
|
|
// NOVI: error: invalid operand for instruction
|
|
|
|
v_add_f16 v1, -32769, v2
|
|
// NOVI: error: invalid operand for instruction
|
|
|
|
v_add_f16 v1, 65536, v2
|
|
// NOVI: error: invalid operand for instruction
|
|
|
|
v_add_f32 v1, 4294967296, v2
|
|
// NOVI: error: invalid operand for instruction
|
|
|
|
v_add_f32 v1, 0x0000000100000000, v2
|
|
// NOVI: error: invalid operand for instruction
|
|
|
|
v_and_b32 v1, 0x0000000100000000, v2
|
|
// NOVI: error: invalid operand for instruction
|