fix an embarassing typo that resulted in llvm-gcc bootstrap miscompare
[llvm/avr.git] / test / CodeGen / ARM / ifcvt5.ll
blobda36af8bb74b0b6e745e14289459703d9a605269
1 ; RUN: llc < %s -march=arm
2 ; RUN: llc < %s -march=arm | grep blge | count 1
4 @x = external global i32*               ; <i32**> [#uses=1]
6 define void @foo(i32 %a) {
7 entry:
8         %tmp = load i32** @x            ; <i32*> [#uses=1]
9         store i32 %a, i32* %tmp
10         ret void
13 define void @t1(i32 %a, i32 %b) {
14 entry:
15         %tmp1 = icmp sgt i32 %a, 10             ; <i1> [#uses=1]
16         br i1 %tmp1, label %cond_true, label %UnifiedReturnBlock
18 cond_true:              ; preds = %entry
19         tail call void @foo( i32 %b )
20         ret void
22 UnifiedReturnBlock:             ; preds = %entry
23         ret void