blob: aab91e07b2810d27d59f2f2863479dd5aaec20b5 [file] [log] [blame]
Chris Lattnere55484e2008-12-25 05:34:37 +00001; RUN: llvm-as < %s | llc | grep btl
2target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:128:128"
3target triple = "i386-apple-darwin8"
4
5define void @test2(i32 %x, i32 %n) nounwind {
6entry:
7 %tmp29 = lshr i32 %x, %n ; <i32> [#uses=1]
8 %tmp3 = and i32 %tmp29, 1 ; <i32> [#uses=1]
9 %tmp4 = icmp eq i32 %tmp3, 0 ; <i1> [#uses=1]
10 br i1 %tmp4, label %bb, label %UnifiedReturnBlock
11
12bb: ; preds = %entry
13 call void @foo()
14 ret void
15
16UnifiedReturnBlock: ; preds = %entry
17 ret void
18}
19
20declare void @foo()