[ARM] Adjust how NEON shifts are lowered
[llvm-core.git] / test / CodeGen / X86 / 2009-03-13-PHIElimBug.ll
blob91f29c4f24cd96df0fa2093a27610fab07397484
1 ; RUN: llc < %s -mtriple=i686-linux | FileCheck %s
2 ; Check the register copy comes after the call to f and before the call to g
3 ; PR3784
5 declare i32 @f()
7 declare i32 @g()
9 define i32 @phi() personality i32 (...)* @__gxx_personality_v0 {
10 entry:
11         %a = call i32 @f()              ; <i32> [#uses=1]
12         %b = invoke i32 @g()
13                         to label %cont unwind label %lpad               ; <i32> [#uses=1]
15 cont:           ; preds = %entry
16         %x = phi i32 [ %b, %entry ]             ; <i32> [#uses=0]
17         %aa = call i32 @g()             ; <i32> [#uses=1]
18         %bb = invoke i32 @g()
19                         to label %cont2 unwind label %lpad              ; <i32> [#uses=1]
21 cont2:          ; preds = %cont
22         %xx = phi i32 [ %bb, %cont ]            ; <i32> [#uses=1]
23         ret i32 %xx
25 lpad:           ; preds = %cont, %entry
26         %y = phi i32 [ %a, %entry ], [ %aa, %cont ]             ; <i32> [#uses=1]
27         %exn = landingpad {i8*, i32}
28                  cleanup
29         ret i32 %y
32 ; CHECK: call{{.*}}f
33 ; CHECK: movl %eax, %esi
34 ; CHECK: call{{.*}}g
36 declare i32 @__gxx_personality_v0(...)