aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/Mips/2008-07-15-SmallSection.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/Mips/2008-07-15-SmallSection.ll')
-rw-r--r--test/CodeGen/Mips/2008-07-15-SmallSection.ll27
1 files changed, 0 insertions, 27 deletions
diff --git a/test/CodeGen/Mips/2008-07-15-SmallSection.ll b/test/CodeGen/Mips/2008-07-15-SmallSection.ll
deleted file mode 100644
index 79f4d7970e68..000000000000
--- a/test/CodeGen/Mips/2008-07-15-SmallSection.ll
+++ /dev/null
@@ -1,27 +0,0 @@
-; RUN: llc < %s -march=mips -mcpu=mips32 -mips-ssection-threshold=8 -relocation-model=static -mattr=+noabicalls -mgpopt | FileCheck %s
-
-%struct.anon = type { i32, i32 }
-
-@s0 = constant [8 x i8] c"AAAAAAA\00", align 4
-
-; CHECK: .type foo,@object
-; CHECK-NEXT: .section .sdata,"aw",@progbits
-@foo = global %struct.anon { i32 2, i32 3 }
-
-; CHECK: .type bar,@object
-; CHECK-NEXT: .section .sbss,"aw",@nobits
-@bar = global %struct.anon zeroinitializer
-
-define i8* @A0() nounwind {
-entry:
- ret i8* getelementptr ([8 x i8], [8 x i8]* @s0, i32 0, i32 0)
-}
-
-define i32 @A1() nounwind {
-entry:
- load i32, i32* getelementptr (%struct.anon, %struct.anon* @foo, i32 0, i32 0), align 8
- load i32, i32* getelementptr (%struct.anon, %struct.anon* @foo, i32 0, i32 1), align 4
- add i32 %1, %0
- ret i32 %2
-}
-