You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
505 B
17 lines
505 B
; Check that the GHC calling convention works (s390x)
|
|
; Variable-sized stack allocations are not supported in GHC calling convention
|
|
;
|
|
; RUN: not --crash llc -mtriple=s390x-ibm-linux < %s 2>&1 | FileCheck %s
|
|
|
|
define ghccc void @foo() nounwind {
|
|
entry:
|
|
%0 = call i8* @llvm.stacksave()
|
|
call void @llvm.stackrestore(i8* %0)
|
|
ret void
|
|
}
|
|
|
|
declare i8* @llvm.stacksave()
|
|
declare void @llvm.stackrestore(i8*)
|
|
|
|
; CHECK: LLVM ERROR: Variable-sized stack allocations are not supported in GHC calling convention
|