1; Check that the GHC calling convention works (s390x) 2; In GHC calling convention a frame pointer is not supported 3; 4; RUN: not --crash llc -mtriple=s390x-ibm-linux < %s 2>&1 | FileCheck %s 5 6define ghccc void @foo(i64 %0) nounwind { 7entry: 8 alloca i64, i64 %0 9 ret void 10} 11 12; CHECK: LLVM ERROR: In GHC calling convention a frame pointer is not supported 13