aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/ARM/section-name.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/ARM/section-name.ll')
-rw-r--r--test/CodeGen/ARM/section-name.ll25
1 files changed, 0 insertions, 25 deletions
diff --git a/test/CodeGen/ARM/section-name.ll b/test/CodeGen/ARM/section-name.ll
deleted file mode 100644
index a4c6054197f3..000000000000
--- a/test/CodeGen/ARM/section-name.ll
+++ /dev/null
@@ -1,25 +0,0 @@
-; RUN: llc < %s -mtriple=arm-unknown-linux-gnueabi | FileCheck %s
-
-; CHECK: .text
-; CHECK: .globl test1
-; CHECK: .type test1,%function
-define void @test1() {
-entry:
- ret void
-}
-
-; CHECK: .section .test2,"ax",%progbits
-; CHECK: .globl test2
-; CHECK: .type test2,%function
-define void @test2() section ".test2" {
-entry:
- ret void
-}
-
-; CHECK: .text
-; CHECK: .weak test3
-; CHECK: .type test3,%function
-define linkonce_odr void @test3() {
-entry:
- ret void
-}