diff options
author | Chris Lattner <sabre@nondot.org> | 2010-01-23 06:39:22 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-01-23 06:39:22 +0000 |
commit | 685508cf494ee73690f77fc929382f53b157c1ca (patch) | |
tree | d5512f2809a09a614513335acdbbec5d1db81d1c /llvm/lib/Target/PowerPC/AsmPrinter/PPCAsmPrinter.cpp | |
parent | d1acffc845ec1c6e254006f5b9bdd7ec4f61dc24 (diff) | |
download | bcm5719-llvm-685508cf494ee73690f77fc929382f53b157c1ca.tar.gz bcm5719-llvm-685508cf494ee73690f77fc929382f53b157c1ca.zip |
move the various directive enums out of the MCStreamer class
into a new MCDirectives.h file.
llvm-svn: 94294
Diffstat (limited to 'llvm/lib/Target/PowerPC/AsmPrinter/PPCAsmPrinter.cpp')
-rw-r--r-- | llvm/lib/Target/PowerPC/AsmPrinter/PPCAsmPrinter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/PowerPC/AsmPrinter/PPCAsmPrinter.cpp b/llvm/lib/Target/PowerPC/AsmPrinter/PPCAsmPrinter.cpp index 67ec2edb323..b89c2b48721 100644 --- a/llvm/lib/Target/PowerPC/AsmPrinter/PPCAsmPrinter.cpp +++ b/llvm/lib/Target/PowerPC/AsmPrinter/PPCAsmPrinter.cpp @@ -968,7 +968,7 @@ bool PPCDarwinAsmPrinter::doFinalization(Module &M) { // implementation of multiple entry points). If this doesn't occur, the // linker can safely perform dead code stripping. Since LLVM never generates // code that does this, it is always safe to set. - OutStreamer.EmitAssemblerFlag(MCStreamer::SubsectionsViaSymbols); + OutStreamer.EmitAssemblerFlag(MCAF_SubsectionsViaSymbols); return AsmPrinter::doFinalization(M); } |