1# RUN: not --crash llc -march=amdgcn -run-pass machineverifier %s -o - 2>&1 | FileCheck %s 2 3# CHECK: *** Bad machine code: SOP2/SOPC instruction requires too many immediate constants 4# CHECK: - instruction: %0:sreg_32_xm0 = S_ADD_I32 5 6# CHECK: *** Bad machine code: SOP2/SOPC instruction requires too many immediate constants 7# CHECK: - instruction: S_CMP_EQ_U32 8 9# CHECK-NOT: Bad machine code 10 11--- 12name: sop2_sopc 13tracksRegLiveness: true 14body: | 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 18 19 %1:sreg_32_xm0 = S_SUB_I32 2011, 10, implicit-def $scc 20 S_CMP_LG_U32 -5, 2011, implicit-def $scc 21... 22