[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / CodeGen / X86 / 2009-03-16-PHIElimInLPad.ll
blobec366c3cdcd8ea9f5b5e668a4ffb2c34560bd180
1 ; RUN: llc < %s -mtriple=i686-linux -asm-verbose | FileCheck %s
2 ; Check that register copies in the landing pad come after the EH_LABEL
4 declare i32 @f()
6 define i32 @phi(i32 %x) personality ptr @__gxx_personality_v0 {
7 entry:
8         %a = invoke i32 @f()
9                         to label %cont unwind label %lpad               ; <i32> [#uses=1]
11 cont:           ; preds = %entry
12         %b = invoke i32 @f()
13                         to label %cont2 unwind label %lpad              ; <i32> [#uses=1]
15 cont2:          ; preds = %cont
16         ret i32 %b
18 lpad:           ; preds = %cont, %entry
19         %v = phi i32 [ %x, %entry ], [ %a, %cont ]              ; <i32> [#uses=1]
20         %exn = landingpad {ptr, i32}
21                  cleanup
22         ret i32 %v
25 ; CHECK: lpad
26 ; CHECK-NEXT: .cfi_def_cfa_offset 16
27 ; CHECK-NEXT: Ltmp
29 declare i32 @__gxx_personality_v0(...)