aboutsummaryrefslogtreecommitdiffstats
path: root/test/MC/AsmParser
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2011-10-19 18:48:52 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2011-10-19 18:48:52 +0000
commit12ae52767f2d0e4312ba059c0e97ed8beb9777d5 (patch)
treec0c03f755d3975a0e1abd64dddc66dfc28224274 /test/MC/AsmParser
parentb3b6335212451b348dd86dd27a0086de7fb232bc (diff)
downloadexternal_llvm-12ae52767f2d0e4312ba059c0e97ed8beb9777d5.zip
external_llvm-12ae52767f2d0e4312ba059c0e97ed8beb9777d5.tar.gz
external_llvm-12ae52767f2d0e4312ba059c0e97ed8beb9777d5.tar.bz2
Fix parsing of a line with only a # in it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142537 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/MC/AsmParser')
-rw-r--r--test/MC/AsmParser/line_with_hash.s15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/MC/AsmParser/line_with_hash.s b/test/MC/AsmParser/line_with_hash.s
new file mode 100644
index 0000000..6fdab40
--- /dev/null
+++ b/test/MC/AsmParser/line_with_hash.s
@@ -0,0 +1,15 @@
+# RUN: llvm-mc -triple i386-unknown-unknown %s | FileCheck %s
+
+// We used to incorrectly parse a line with only a # in it
+
+.zero 42
+#
+.ifndef FOO
+.zero 2
+.else
+.endif
+.zero 24
+
+// CHECK: .zero 42
+// CHECK-NEXT: .zero 2
+// CHECK-NEXT: .zero 24