aboutsummaryrefslogtreecommitdiffstats
path: root/test/MC/ARM/inst-constant-required.s
diff options
context:
space:
mode:
Diffstat (limited to 'test/MC/ARM/inst-constant-required.s')
-rw-r--r--test/MC/ARM/inst-constant-required.s15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/MC/ARM/inst-constant-required.s b/test/MC/ARM/inst-constant-required.s
new file mode 100644
index 0000000..d4863dd
--- /dev/null
+++ b/test/MC/ARM/inst-constant-required.s
@@ -0,0 +1,15 @@
+@ RUN: not llvm-mc %s -triple=armv7-linux-gnueabi -filetype asm -o - 2>&1 \
+@ RUN: | FileCheck -check-prefix CHECK-ERROR %s
+
+ .syntax unified
+ .arm
+
+ .align 2
+ .global constant_expression_required
+ .type constant_expression_required,%function
+constant_expression_required:
+.Label:
+ movs r0, r0
+ .inst .Label
+@ CHECK-ERROR: expected constant expression
+