summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorKevin Enderby <enderby@apple.com>2009-07-16 17:56:39 +0000
committerKevin Enderby <enderby@apple.com>2009-07-16 17:56:39 +0000
commitf96db468fcf62d671cda99b68b6cfd3f2dc0b839 (patch)
tree2f2ec649cdaffcddb153812a764a05cbe96e42dd /tools
parent214d3194034e39351a14093be5711daf507c8c4b (diff)
downloadexternal_llvm-f96db468fcf62d671cda99b68b6cfd3f2dc0b839.zip
external_llvm-f96db468fcf62d671cda99b68b6cfd3f2dc0b839.tar.gz
external_llvm-f96db468fcf62d671cda99b68b6cfd3f2dc0b839.tar.bz2
Removed the SubsectionsViaSymbols MCStreamer API and replaced it with a generic
EmitAssemblerFlag API which takes a value from the added AssemblerFlag enumerated constants. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76087 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r--tools/llvm-mc/AsmParser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/llvm-mc/AsmParser.cpp b/tools/llvm-mc/AsmParser.cpp
index 5a6db1c..4629cfc 100644
--- a/tools/llvm-mc/AsmParser.cpp
+++ b/tools/llvm-mc/AsmParser.cpp
@@ -1107,7 +1107,7 @@ bool AsmParser::ParseDirectiveDarwinSubsectionsViaSymbols() {
Lexer.Lex();
- Out.SubsectionsViaSymbols();
+ Out.EmitAssemblerFlag(MCStreamer::SubsectionsViaSymbols);
return false;
}