diff options
author | Kevin Enderby <enderby@apple.com> | 2009-07-16 17:56:39 +0000 |
---|---|---|
committer | Kevin Enderby <enderby@apple.com> | 2009-07-16 17:56:39 +0000 |
commit | f96db468fcf62d671cda99b68b6cfd3f2dc0b839 (patch) | |
tree | 2f2ec649cdaffcddb153812a764a05cbe96e42dd /tools/llvm-mc/AsmParser.cpp | |
parent | 214d3194034e39351a14093be5711daf507c8c4b (diff) |
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/llvm-mc/AsmParser.cpp')
-rw-r--r-- | tools/llvm-mc/AsmParser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/llvm-mc/AsmParser.cpp b/tools/llvm-mc/AsmParser.cpp index 5a6db1c9c0..4629cfc34b 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; } |