Batch 3 of Mips CodeGen tests
[oota-llvm.git] / test / CodeGen / Mips / 2008-07-15-SmallSection.ll
1 ; RUN: llvm-as < %s | llc -mips-ssection-threshold=8 -march=mips -f -o %t0
2 ; RUN: llvm-as < %s | llc -mips-ssection-threshold=0 -march=mips -f -o %t1
3 ; RUN: grep {sdata} %t0 | count 1
4 ; RUN: grep {sbss} %t0 | count 1
5 ; RUN: grep {gp_rel} %t0 | count 2
6 ; RUN: not grep {sdata} %t1 
7 ; RUN: not grep {sbss} %t1 
8 ; RUN: not grep {gp_rel} %t1
9 ; RUN: grep {\%hi} %t1 | count 2
10 ; RUN: grep {\%lo} %t1 | count 2
11
12 target datalayout = "e-p:32:32:32-i1:8:8-i8:8:32-i16:16:32-i32:32:32-i64:32:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64"
13 target triple = "mipsallegrexel-psp-elf"
14
15   %struct.anon = type { i32, i32 }
16 @s0 = global [8 x i8] c"AAAAAAA\00", align 4
17 @foo = global %struct.anon { i32 2, i32 3 }
18 @bar = global %struct.anon zeroinitializer 
19
20 define i8* @A0() nounwind {
21 entry:
22         ret i8* getelementptr ([8 x i8]* @s0, i32 0, i32 0)
23 }
24
25 define i32 @A1() nounwind {
26 entry:
27   load i32* getelementptr (%struct.anon* @foo, i32 0, i32 0), align 8 
28   load i32* getelementptr (%struct.anon* @foo, i32 0, i32 1), align 4 
29   add i32 %1, %0
30   ret i32 %2
31 }
32