summaryrefslogtreecommitdiff
path: root/test/MC/AsmParser
diff options
context:
space:
mode:
authorSaleem Abdulrasool <compnerd@compnerd.org>2013-12-28 06:39:29 +0000
committerSaleem Abdulrasool <compnerd@compnerd.org>2013-12-28 06:39:29 +0000
commit14b42a1c92b47bced8e6b94a0213a8970d1c0edd (patch)
treee7ac97681b39c1a7c90b6488a3bfaadba29a8bf1 /test/MC/AsmParser
parentb5191e98e883fe804c400cc5187fe54d41a808e0 (diff)
downloadllvm-14b42a1c92b47bced8e6b94a0213a8970d1c0edd.tar.gz
llvm-14b42a1c92b47bced8e6b94a0213a8970d1c0edd.tar.bz2
llvm-14b42a1c92b47bced8e6b94a0213a8970d1c0edd.tar.xz
AsmParser: cleanup diagnostics for .rep/.rept
Avoid double diagnostics for invalid expressions for count. Improve caret location for negative count. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@198099 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/MC/AsmParser')
-rw-r--r--test/MC/AsmParser/directive_rept-diagnostics.s41
1 files changed, 41 insertions, 0 deletions
diff --git a/test/MC/AsmParser/directive_rept-diagnostics.s b/test/MC/AsmParser/directive_rept-diagnostics.s
new file mode 100644
index 0000000000..cbef158690
--- /dev/null
+++ b/test/MC/AsmParser/directive_rept-diagnostics.s
@@ -0,0 +1,41 @@
+# RUN: not llvm-mc -triple i686-elf -filetype asm -o /dev/null %s 2>&1 \
+# RUN: | FileCheck %s
+
+ .data
+
+ .global invalid_expression
+ .type invalid_expression,@object
+invalid_expression:
+ .rept *
+
+# CHECK: error: unknown token in expression
+# CHECK: .rept *
+# CHECK: ^
+
+ .global bad_token
+ .type bad_token,@object
+bad_token:
+ .rept bad_token
+
+# CHECK: error: unexpected token in '.rept' directive
+# CHECK: .rept bad_token
+# CHECK: ^
+
+ .global negative
+ .type negative,@object
+negative:
+ .rept -32
+
+# CHECK: error: Count is negative
+# CHECK: .rept -32
+# CHECK: ^
+
+ .global trailer
+ .type trailer,@object
+trailer:
+ .rep 0 trailer
+
+# CHECK: error: unexpected token in '.rep' directive
+# CHECK: .rep 0 trailer
+# CHECK: ^
+