mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
9c1ffe0e18
Summary of changes: - Changed parser to eliminate generation of excessive error messages; - Corrected lit tests to match all expected error messages; - Corrected lit tests to guard against unwanted extra messages (added option "--implicit-check-not=error:"); - Added missing checks and fixed some typos in tests. See bug 46907: https://bugs.llvm.org/show_bug.cgi?id=46907 Reviewers: arsenm, rampitec Differential Revision: https://reviews.llvm.org/D86940
8 lines
343 B
ArmAsm
8 lines
343 B
ArmAsm
// RUN: not llvm-mc -arch=amdgcn -mcpu=gfx900 %s 2>&1 | FileCheck -check-prefix=GFX9-ERR --implicit-check-not=error: %s
|
|
|
|
v_addc_co_u32_e32 v3, vcc, 12345, v3, vcc
|
|
// GFX9-ERR: error: invalid operand (violates constant bus restrictions)
|
|
|
|
v_cndmask_b32 v0, 12345, v1, vcc
|
|
// GFX9-ERR: error: invalid operand (violates constant bus restrictions)
|