summaryrefslogtreecommitdiff
path: root/test/MC/ARM/unrecognized.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/MC/ARM/unrecognized.ll')
-rw-r--r--test/MC/ARM/unrecognized.ll15
1 files changed, 0 insertions, 15 deletions
diff --git a/test/MC/ARM/unrecognized.ll b/test/MC/ARM/unrecognized.ll
deleted file mode 100644
index 88fb96d1bf..0000000000
--- a/test/MC/ARM/unrecognized.ll
+++ /dev/null
@@ -1,15 +0,0 @@
-; RUN: llc -mcpu=invalid -o /dev/null %s 2>&1 | FileCheck %s --check-prefix=CPU
-; CPU: 'invalid' is not a recognized processor for this target (ignoring processor)
-; CPU-NOT: 'invalid' is not a recognized processor for this target (ignoring processor)
-
-; RUN: llc -mattr=+foo,+bar -o /dev/null %s 2>&1 | FileCheck %s --check-prefix=FEATURE
-; FEATURE: 'foo' is not a recognized feature for this target (ignoring feature)
-; FEATURE-NEXT: 'bar' is not a recognized feature for this target (ignoring feature)
-; FEATURE-NOT: 'foo' is not a recognized feature for this target (ignoring feature)
-; FEATURE-NOT: 'bar' is not a recognized feature for this target (ignoring feature)
-
-define void @foo() {
-entry:
- ret void
-}
-