aboutsummaryrefslogtreecommitdiffstats
path: root/test/MC/AsmParser
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-10-02 18:53:48 +0000
committerChris Lattner <sabre@nondot.org>2010-10-02 18:53:48 +0000
commitb539b76038ed072be886a1b29fdcd1623b6ad897 (patch)
tree6c917acec0c88952b2970cb22957d33adabe8ab8 /test/MC/AsmParser
parent90b12590b6b907f8c3d83bd48e218990b5f1ed53 (diff)
downloadexternal_llvm-b539b76038ed072be886a1b29fdcd1623b6ad897.zip
external_llvm-b539b76038ed072be886a1b29fdcd1623b6ad897.tar.gz
external_llvm-b539b76038ed072be886a1b29fdcd1623b6ad897.tar.bz2
actually, move the elf tests into the existing elf dir.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@115416 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/MC/AsmParser')
-rw-r--r--test/MC/AsmParser/elf_directive_previous.s13
-rw-r--r--test/MC/AsmParser/elf_directive_section.s23
2 files changed, 0 insertions, 36 deletions
diff --git a/test/MC/AsmParser/elf_directive_previous.s b/test/MC/AsmParser/elf_directive_previous.s
deleted file mode 100644
index 5db1eac..0000000
--- a/test/MC/AsmParser/elf_directive_previous.s
+++ /dev/null
@@ -1,13 +0,0 @@
-# RUN: llvm-mc -triple i386-pc-linux-gnu %s | FileCheck %s
-
-.bss
-# CHECK: .bss
-
-.text
-# CHECK: .text
-
-.previous
-# CHECK: .bss
-
-.previous
-# CHECK: .text
diff --git a/test/MC/AsmParser/elf_directive_section.s b/test/MC/AsmParser/elf_directive_section.s
deleted file mode 100644
index 9531c02..0000000
--- a/test/MC/AsmParser/elf_directive_section.s
+++ /dev/null
@@ -1,23 +0,0 @@
-# RUN: llvm-mc -triple i386-pc-linux-gnu %s | FileCheck %s
-
- .bss
-# CHECK: .bss
-
- .data.rel.ro
-# CHECK: .data.rel.ro
-
- .data.rel
-# CHECK: .data.rel
-
- .eh_frame
-# CHECK: .eh_frame
-
- .rodata
-# CHECK: .rodata
-
- .tbss
-# CHECK: .tbss
-
- .tdata
-# CHECK: .tdata
-