mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 20:23:11 +01:00
e86f39b76e
This pass isn't used in tree and can be ported to the NPM later on if desired. Differential Revision: https://reviews.llvm.org/D90189
24 lines
463 B
LLVM
24 lines
463 B
LLVM
; RUN: opt -S -place-safepoints < %s -enable-new-pm=0 | FileCheck %s
|
|
|
|
declare void @callee()
|
|
|
|
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 @callee() "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
|
|
}
|