llvm/llvm/test/CodeGen/SystemZ/args-20.ll

; RUN: not --crash llc < %s -mtriple=s390x-linux-gnu -argext-abi-check 2>&1 \
; RUN:   | FileCheck %s
; REQUIRES: asserts
;
; Test detection of missing extension of an outgoing i8 call argument.

define void @caller() {
  call void @bar_Struct(i8 123)
  ret void
}

declare void @bar_Struct(i8 %Arg)

; CHECK: ERROR: Missing extension attribute of passed value in call to function:
; CHECK: Callee:  void @bar_Struct(i8)
; CHECK: Caller:  void @caller()