xref: /llvm-project/llvm/test/CodeGen/SystemZ/inline-asm-v-constraint-novecfacility.ll (revision b4b4950f7f71c9f3bca457ddd1ca76da001a16fa)
1; RUN: not llc < %s -mtriple=s390x-linux-gnu -mcpu=zEC12 2>&1 | FileCheck %s
2
3; CHECK: error: couldn't allocate output register for constraint 'v'
4
5define signext i32 @int_and_v(i32 signext %cc_dep1) {
6entry:
7  %0 = tail call i32 asm sideeffect "", "=v,0"(i32 %cc_dep1)
8  ret i32 %0
9}
10