1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 04:22:57 +02:00
llvm-mirror/test/Transforms/RewriteStatepointsForGC/two-invokes-one-landingpad.ll
Sanjoy Das 7db00a0614 [RS4GC] Clamp UseDeoptBundles to true and update tests
The full diff for the test directory may be hard to read because of the
filename clash; so here's all that happened as far as the tests are
concerned:

```
cd test/Transforms/RewriteStatepointsForGC
git rm *ll
git mv deopt-bundles/* ./
rmdir deopt-bundles
find . -name '*.ll' | xargs gsed -i 's/-rs4gc-use-deopt-bundles //g'
```

llvm-svn: 259129
2016-01-29 00:28:57 +00:00

34 lines
1.1 KiB
LLVM

; RUN: opt < %s -rewrite-statepoints-for-gc -S | FileCheck %s
declare void @some_call(i64 addrspace(1)*)
declare i32 @dummy_personality_function()
define i64 addrspace(1)* @test(i64 addrspace(1)* %obj, i64 addrspace(1)* %obj1)
gc "statepoint-example"
personality i32 ()* @dummy_personality_function {
entry:
invoke void @some_call(i64 addrspace(1)* %obj) [ "deopt"() ]
to label %second_invoke unwind label %exceptional_return
second_invoke: ; preds = %entry
invoke void @some_call(i64 addrspace(1)* %obj) [ "deopt"() ]
to label %normal_return unwind label %exceptional_return
normal_return: ; preds = %second_invoke
ret i64 addrspace(1)* %obj
; CHECK: exceptional_return1:
; CHECK-NEXT: %lpad2 = landingpad token
; CHECK: exceptional_return.split-lp:
; CHECK-NEXT: %lpad.split-lp = landingpad token
; CHECK: exceptional_return:
; CHECK-NOT: phi token
exceptional_return: ; preds = %second_invoke, %entry
%lpad = landingpad token cleanup
ret i64 addrspace(1)* %obj1
}