blob: 4bebbc80cba10776ad2416c0e54c4b8337aa6fee [file] [log] [blame]
Anna Thomase76d77a2016-10-07 20:34:00 +00001; RUN: opt -S -rewrite-statepoints-for-gc < %s | FileCheck %s
Fedor Sergeev4b86d792017-12-15 09:32:11 +00002; RUN: opt -S -passes=rewrite-statepoints-for-gc < %s | FileCheck %s
Anna Thomase76d77a2016-10-07 20:34:00 +00003; Ensure statepoints copy (valid) attributes from callsites.
4
5declare void @f(i8 addrspace(1)* %obj)
6
7; copy over norecurse noimplicitfloat to statepoint call
8define void @test1(i8 addrspace(1)* %arg) gc "statepoint-example" {
9; CHECK-LABEL: test1(
10; CHECK: call token (i64, i32, void (i8 addrspace(1)*)*, i32, i32, ...) @llvm.experimental.gc.statepoint.p0f_isVoidp1i8f(i64 2882400000, i32 0, void (i8 addrspace(1)*)* @f, i32 1, i32 0, i8 addrspace(1)* %arg, i32 0, i32 0, i8 addrspace(1)* %arg) #1
11
12 call void @f(i8 addrspace(1)* %arg) #1
13 ret void
14}
15
16
17attributes #1 = { norecurse noimplicitfloat }