summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-01-23 06:39:22 +0000
committerChris Lattner <sabre@nondot.org>2010-01-23 06:39:22 +0000
commit685508cf494ee73690f77fc929382f53b157c1ca (patch)
treed5512f2809a09a614513335acdbbec5d1db81d1c /llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp
parentd1acffc845ec1c6e254006f5b9bdd7ec4f61dc24 (diff)
downloadbcm5719-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/CodeGen/AsmPrinter/DwarfException.cpp')
-rw-r--r--llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp b/llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp
index 1b72f73fb1d..fd3dbf5cf18 100644
--- a/llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp
+++ b/llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp
@@ -247,7 +247,7 @@ void DwarfException::EmitFDE(const FunctionEHFrameInfo &EHFrameInfo) {
// dead-stripping unconditionally.
if (MAI->hasNoDeadStrip())
Asm->OutStreamer.EmitSymbolAttribute(EHFrameInfo.FunctionEHSym,
- MCStreamer::NoDeadStrip);
+ MCSA_NoDeadStrip);
} else {
O << *EHFrameInfo.FunctionEHSym << ":\n";
@@ -316,7 +316,7 @@ void DwarfException::EmitFDE(const FunctionEHFrameInfo &EHFrameInfo) {
if (MMI->isUsedFunction(EHFrameInfo.function))
if (MAI->hasNoDeadStrip())
Asm->OutStreamer.EmitSymbolAttribute(EHFrameInfo.FunctionEHSym,
- MCStreamer::NoDeadStrip);
+ MCSA_NoDeadStrip);
}
Asm->O << '\n';
}
OpenPOWER on IntegriCloud