[lldb] Make sure Blocks always have a parent (#117683)
[llvm-project.git] / llvm / test / CodeGen / SystemZ / args-18.ll
blobbd368fa056c6c99630b0404c67e7a6e9c4eaf808
1 ; RUN: not --crash llc < %s -mtriple=s390x-linux-gnu -argext-abi-check 2>&1 \
2 ; RUN:   | FileCheck %s
3 ; REQUIRES: asserts
5 ; Test detection of missing extension of an outgoing i32 call argument.
7 define void @caller() {
8   call void @bar_Struct(i32 123)
9   ret void
12 declare void @bar_Struct(i32 %Arg)
14 ; CHECK: ERROR: Missing extension attribute of passed value in call to function:
15 ; CHECK: Callee:  void @bar_Struct(i32)
16 ; CHECK: Caller:  void @caller()