diff options
author | Daniel Dunbar <daniel@zuster.org> | 2010-07-12 18:49:22 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2010-07-12 18:49:22 +0000 |
commit | 9ac66b008d74d0a981455a2220136c59cf363226 (patch) | |
tree | 584c933d348a460cb794ffc89dfa50c8d69367b7 /include | |
parent | 4e82bbb745160f19d76b9b5de5b93ebe224e1acf (diff) | |
download | external_llvm-9ac66b008d74d0a981455a2220136c59cf363226.zip external_llvm-9ac66b008d74d0a981455a2220136c59cf363226.tar.gz external_llvm-9ac66b008d74d0a981455a2220136c59cf363226.tar.bz2 |
MC/AsmParser: Move some misc. Darwin directive handling to DarwinAsmParser.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108174 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/MC/MCParser/AsmParser.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/include/llvm/MC/MCParser/AsmParser.h b/include/llvm/MC/MCParser/AsmParser.h index ce7cee9..4e89b99 100644 --- a/include/llvm/MC/MCParser/AsmParser.h +++ b/include/llvm/MC/MCParser/AsmParser.h @@ -144,15 +144,6 @@ private: bool ParseDirectiveDarwinZerofill(); // Darwin specific ".zerofill" bool ParseDirectiveDarwinTBSS(); // Darwin specific ".tbss" - // Darwin specific ".subsections_via_symbols" - bool ParseDirectiveDarwinSubsectionsViaSymbols(); - // Darwin specific .dump and .load - bool ParseDirectiveDarwinDumpOrLoad(SMLoc IDLoc, bool IsDump); - // Darwin specific .secure_log_unique - bool ParseDirectiveDarwinSecureLogUnique(SMLoc IDLoc); - // Darwin specific .secure_log_reset - bool ParseDirectiveDarwinSecureLogReset(SMLoc IDLoc); - bool ParseDirectiveAbort(); // ".abort" bool ParseDirectiveInclude(); // ".include" |