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/CodeGen/AsmPrinter/DwarfException.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/CodeGen/AsmPrinter/DwarfException.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp | 4 |
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'; } |