Anna Thomas | e76d77a | 2016-10-07 20:34:00 +0000 | [diff] [blame^] | 1 | ; RUN: opt -S -rewrite-statepoints-for-gc < %s | FileCheck %s |
| 2 | ; Ensure statepoints copy (valid) attributes from callsites. |
| 3 | |
| 4 | declare void @f(i8 addrspace(1)* %obj) |
| 5 | |
| 6 | ; copy over norecurse noimplicitfloat to statepoint call |
| 7 | define 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 | |
| 16 | attributes #1 = { norecurse noimplicitfloat } |