summaryrefslogtreecommitdiff
path: root/test/MC
diff options
context:
space:
mode:
authorKevin Enderby <enderby@apple.com>2009-07-20 20:25:37 +0000
committerKevin Enderby <enderby@apple.com>2009-07-20 20:25:37 +0000
commit5026ae4514caf5bb88d6c09fbf56a9db2753ed43 (patch)
treea610cc7a46320195b936b5584f68a38ede2c2190 /test/MC
parentdbd692a66e6a5f60ec3ff120ed27ae3a918c375f (diff)
downloadllvm-5026ae4514caf5bb88d6c09fbf56a9db2753ed43.tar.gz
llvm-5026ae4514caf5bb88d6c09fbf56a9db2753ed43.tar.bz2
llvm-5026ae4514caf5bb88d6c09fbf56a9db2753ed43.tar.xz
Removed the DumpSymbolsandMacros and LoadSymbolsandMacros MCStreamer API as
the parsing of the .dump and .load should be done in the assembly parser and not have any need for an MCStreamer API. Changed the code for now so these just produce an error saying these specific directives are not yet implemented since they are likely no longer used and may never need to be implemented. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76462 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/MC')
-rw-r--r--test/MC/AsmParser/directive_dump_and_load.s8
1 files changed, 0 insertions, 8 deletions
diff --git a/test/MC/AsmParser/directive_dump_and_load.s b/test/MC/AsmParser/directive_dump_and_load.s
deleted file mode 100644
index c810244ede..0000000000
--- a/test/MC/AsmParser/directive_dump_and_load.s
+++ /dev/null
@@ -1,8 +0,0 @@
-# RUN: llvm-mc -triple i386-unknown-unknown %s | FileCheck %s
-
-# CHECK: TEST0:
-# CHECK: .dump "somefile"
-# CHECK: .load "jack and jill"
-TEST0:
- .dump "somefile"
- .load "jack and jill"