This reverts commit 647c3f4e47de8a850ffcaa897db68702d8d2459a. Got bots failure from sanitizer-windows and maybe others.
13 lines
347 B
LLVM
13 lines
347 B
LLVM
; Check that the GHC calling convention works (s390x)
|
|
; In GHC calling convention a frame pointer is not supported
|
|
;
|
|
; RUN: not llc -mtriple=s390x-ibm-linux < %s 2>&1 | FileCheck %s
|
|
|
|
define ghccc void @foo(i64 %0) nounwind {
|
|
entry:
|
|
alloca i64, i64 %0
|
|
ret void
|
|
}
|
|
|
|
; CHECK: LLVM ERROR: In GHC calling convention a frame pointer is not supported
|