aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorKevin Enderby <enderby@apple.com>2009-07-15 15:30:11 +0000
committerKevin Enderby <enderby@apple.com>2009-07-15 15:30:11 +0000
commit6e68cd96b2c76c80bfff07e8121ba19691ec1276 (patch)
treef97a4cf04c01009e2b0378c123bd462b80912091 /test
parenta4b048668418f74dfb2399421dc54db1d999c9cd (diff)
downloadexternal_llvm-6e68cd96b2c76c80bfff07e8121ba19691ec1276.zip
external_llvm-6e68cd96b2c76c80bfff07e8121ba19691ec1276.tar.gz
external_llvm-6e68cd96b2c76c80bfff07e8121ba19691ec1276.tar.bz2
Added llvm-mc support for parsing the .dump and .load directives.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75786 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/MC/AsmParser/directive_dump_and_load.s8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/MC/AsmParser/directive_dump_and_load.s b/test/MC/AsmParser/directive_dump_and_load.s
new file mode 100644
index 0000000..74c300d
--- /dev/null
+++ b/test/MC/AsmParser/directive_dump_and_load.s
@@ -0,0 +1,8 @@
+# RUN: llvm-mc %s | FileCheck %s
+
+# CHECK: TEST0:
+# CHECK: .dump "somefile"
+# CHECK: .load "jack and jill"
+TEST0:
+ .dump "somefile"
+ .load "jack and jill"