summaryrefslogtreecommitdiffstats
path: root/llvm/test/Transforms/PlaceSafepoints/no-statepoints.ll
blob: 698f295f5f9c7653f840ef16de0441c3f532708a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
; RUN: opt -S -place-safepoints < %s | FileCheck %s

define void @test() gc "statepoint-example" {
; CHECK-LABEL: test(
entry:
; CHECK: entry:
; CHECK: call void @do_safepoint()
  br label %other

other:
; CHECK: other:
  call void undef() "gc-leaf-function"
; CHECK: call void @do_safepoint()
  br label %other
}

declare void @do_safepoint()
define void @gc.safepoint_poll() {
  call void @do_safepoint()
  ret void
}
OpenPOWER on IntegriCloud