blob: 0dbe5472207a8535ef2b7a8bfdc29af20b6b51e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
; Check that the GHC calling convention works (s390x)
; Thread local storage is not supported in GHC calling convention
;
; RUN: not llc -mtriple=s390x-ibm-linux < %s 2>&1 | FileCheck %s
@x = thread_local global i32 0
define ghccc void @foo() nounwind {
entry:
call void @bar(i32 *@x)
ret void
}
declare void @bar(i32*)
; CHECK: LLVM ERROR: In GHC calling convention TLS is not supported
|