blob: 38ad79e887f7e8375d90d8cec9b0e6e7b42f9a3f [file] [log] [blame]
Anna Thomase76d77a2016-10-07 20:34:00 +00001; RUN: opt -S -rewrite-statepoints-for-gc < %s | FileCheck %s
2; Ensure statepoints copy (valid) attributes from callsites.
3
4declare void @f(i8 addrspace(1)* %obj)
5
6; copy over norecurse noimplicitfloat to statepoint call
7define void @test1(i8 addrspace(1)* %arg) gc "statepoint-example" {
8; CHECK-LABEL: test1(
9; 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
10
11 call void @f(i8 addrspace(1)* %arg) #1
12 ret void
13}
14
15
16attributes #1 = { norecurse noimplicitfloat }