Handle logical shift right (at least I hope so :) )
[llvm/msp430.git] / test / CodeGen / X86 / 2009-03-16-PHIElimInLPad.ll
blob091aab41d291ebfcbf276ec261be92ebdc5ef242
1 ; RUN: llvm-as < %s | llc -march=x86 -asm-verbose | grep -A 1 lpad | grep Llabel
2 ; Check that register copies in the landing pad come after the EH_LABEL
4 declare i32 @f()
6 define i32 @phi(i32 %x) {
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         ret i32 %v