summaryrefslogtreecommitdiff
path: root/test/MC/AsmParser
diff options
context:
space:
mode:
authorSaleem Abdulrasool <compnerd@compnerd.org>2014-01-26 22:55:02 +0000
committerSaleem Abdulrasool <compnerd@compnerd.org>2014-01-26 22:55:02 +0000
commit283b40e4d4b88556d9e723e21f2cee05fa94fabd (patch)
tree0627b1dc5aa0d1ff2d4dd3d9099e5f6d6fa121fd /test/MC/AsmParser
parent4fefc13b5e804509691cb6e0641b1790352c3293 (diff)
MC: fix test locations/name
Placed the MC variant diagnostics in the wrong directory accidentally. Move them into their respective architecture specific directories. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@200161 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/MC/AsmParser')
-rw-r--r--test/MC/AsmParser/variant-diagnostics-2.s11
-rw-r--r--test/MC/AsmParser/variant-diagnostics.s13
2 files changed, 0 insertions, 24 deletions
diff --git a/test/MC/AsmParser/variant-diagnostics-2.s b/test/MC/AsmParser/variant-diagnostics-2.s
deleted file mode 100644
index bf6a7c772b4..00000000000
--- a/test/MC/AsmParser/variant-diagnostics-2.s
+++ /dev/null
@@ -1,11 +0,0 @@
-# RUN: not llvm-mc -triple i386-linux-gnu -filetype asm -o /dev/null 2>&1 %s \
-# RUN: | FileCheck %s
-
- .text
-
-function:
- call external@invalid
-
-# CHECK: error: invalid variant 'invalid'
-# CHECK: call external@invalid
-# CHECK: ^
diff --git a/test/MC/AsmParser/variant-diagnostics.s b/test/MC/AsmParser/variant-diagnostics.s
deleted file mode 100644
index 535ee2686f1..00000000000
--- a/test/MC/AsmParser/variant-diagnostics.s
+++ /dev/null
@@ -1,13 +0,0 @@
-@ RUN: not llvm-mc -triple armv7-linux-eabi -filetype asm -o /dev/null 2>&1 %s \
-@ RUN: | FileCheck %s
-
- .arch armv7
-
- .type invalid_variant,%function
-invalid_variant:
- bx target(invalid)
-
-@ CHECK: error: invalid variant 'invalid'
-@ CHECK: bx target(invalid)
-@ CHECK: ^
-