summaryrefslogtreecommitdiffstats
path: root/llvm/test/Transforms/Sink/landingpad.ll
blob: 10548fd5b7d403f910a26b9e2614209403ef3ff0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
; Test that we don't sink landingpads
; RUN: opt -sink -S < %s | FileCheck %s

declare hidden void @g()
declare void @h()
declare i32 @__gxx_personality_v0(...)

define void @f() personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) {
entry:
  invoke void @g()
          to label %invoke.cont.15 unwind label %lpad

invoke.cont.15:
  unreachable

; CHECK: lpad:
; CHECK: %0 = landingpad { i8*, i32 }
lpad:
  %0 = landingpad { i8*, i32 }
          catch i8* null
  invoke void @h()
          to label %invoke.cont unwind label %lpad.1

; CHECK: invoke.cont
; CHECK-NOT: %0 = landingpad { i8*, i32 }
invoke.cont:
  ret void

lpad.1:
  %1 = landingpad { i8*, i32 }
          cleanup
  resume { i8*, i32 } %1
}
OpenPOWER on IntegriCloud