2aeacc903fbeaf0985e6ac6af7ce72e1bdb0b339
[oota-llvm.git] / test / CodeGen / Mips / simplebr.ll
1 ; RUN: llc -mtriple=mipsel-linux-gnu -march=mipsel -mcpu=mips16 -mips16-hard-float -mattr=+soft-float -relocation-model=static < %s | FileCheck %s -check-prefix=CHECK-STATIC16
2
3 ; ModuleID = 'simplebr.c'
4 target datalayout = "E-p:32:32:32-i1:8:8-i8:8:32-i16:16:32-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-n32-S64"
5 target triple = "mips--linux-gnu"
6
7 @i = common global i32 0, align 4
8
9 ; Function Attrs: nounwind
10 define void @foo() #0 {
11 entry:
12   %0 = load i32, i32* @i, align 4
13   %tobool = icmp ne i32 %0, 0
14   br i1 %tobool, label %if.then, label %if.else
15
16 if.then:                                          ; preds = %entry
17   call void bitcast (void (...)* @goo to void ()*)()
18   br label %if.end
19
20 if.else:                                          ; preds = %entry
21   call void bitcast (void (...)* @hoo to void ()*)()
22   br label %if.end
23
24 if.end:                                           ; preds = %if.else, %if.then
25   ret void
26 }
27
28 ; CHECK-STATIC16:       b       $BB{{[0-9]+}}_{{[0-9]+}} # 16 bit inst
29
30 declare void @goo(...) #1
31
32 declare void @hoo(...) #1
33
34 attributes #0 = { nounwind "less-precise-fpmad"="false" "no-frame-pointer-elim"="true" "no-frame-pointer-elim-non-leaf" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="true" }
35 attributes #1 = { "less-precise-fpmad"="false" "no-frame-pointer-elim"="true" "no-frame-pointer-elim-non-leaf" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="true" }
36
37