[sanitizer] Improve FreeBSD ASLR detection
[llvm-project.git] / llvm / test / Transforms / RewriteStatepointsForGC / statepoint-attrs.ll
blobce40957530b79ad9f7c23df8a5323c93b6225036
1 ; RUN: opt -S -rewrite-statepoints-for-gc < %s | FileCheck %s
2 ; RUN: opt -S -passes=rewrite-statepoints-for-gc < %s | FileCheck %s
3 ; Ensure statepoints copy (valid) attributes from callsites.
5 declare void @f(i8 addrspace(1)* %obj)
7 ; copy over norecurse noimplicitfloat to statepoint call
8 define void @test1(i8 addrspace(1)* %arg) gc "statepoint-example" {
9 ; CHECK-LABEL: test1(
10 ; CHECK: %statepoint_token = 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) #1 [ "gc-live"(i8 addrspace(1)* %arg) ]
12  call void @f(i8 addrspace(1)* %arg) #1
13  ret void
17 attributes #1 = { norecurse noimplicitfloat }