[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / CodeGen / AMDGPU / verify-sop.mir
blob040cd58f28c97d577b2efa9174f1a8982879c64f
1 # RUN: not --crash llc -march=amdgcn -run-pass machineverifier %s -o - 2>&1 | FileCheck %s
3 # CHECK: *** Bad machine code: SOP2/SOPC instruction requires too many immediate constants
4 # CHECK: - instruction: %0:sreg_32_xm0 = S_ADD_I32
6 # CHECK: *** Bad machine code: SOP2/SOPC instruction requires too many immediate constants
7 # CHECK: - instruction: S_CMP_EQ_U32
9 # CHECK-NOT: Bad machine code
11 ---
12 name: sop2_sopc
13 tracksRegLiveness: true
14 body: |
15   bb.0:
16     %0:sreg_32_xm0 = S_ADD_I32 2011, -113, implicit-def $scc
17     S_CMP_EQ_U32 2011, -113, implicit-def $scc
19     %1:sreg_32_xm0 = S_SUB_I32 2011, 10, implicit-def $scc
20     S_CMP_LG_U32 -5, 2011, implicit-def $scc
21 ...