diff options
author | Saleem Abdulrasool <compnerd@compnerd.org> | 2014-06-11 01:19:03 +0000 |
---|---|---|
committer | Saleem Abdulrasool <compnerd@compnerd.org> | 2014-06-11 01:19:03 +0000 |
commit | 8076cab0ceef4db0fc9aadd18c6c03ab8ae0a210 (patch) | |
tree | c6cb72a2104c7e00f43dbb3407fa728804a10f6c /llvm/lib/CodeGen/AsmPrinter/Win64Exception.cpp | |
parent | 195f04afeb3b1ee7c8db2370402a2cac7efd18e8 (diff) | |
download | bcm5719-llvm-8076cab0ceef4db0fc9aadd18c6c03ab8ae0a210.tar.gz bcm5719-llvm-8076cab0ceef4db0fc9aadd18c6c03ab8ae0a210.zip |
CodeGen: refactor DwarfException
DwarfException served as a base class for exception handling directive emission.
However, this is also used by other exception models (e.g. Win64EH). Rename
this class to EHStreamer and split it out of DwarfException.h. NFC.
Use the opportunity to fix up some of the documentation comments to match
current LLVM style. Also rename some functions to conform better with current
LLVM coding style.
llvm-svn: 210622
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/Win64Exception.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/Win64Exception.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/Win64Exception.cpp b/llvm/lib/CodeGen/AsmPrinter/Win64Exception.cpp index 17d8bff6092..4768a43e9a6 100644 --- a/llvm/lib/CodeGen/AsmPrinter/Win64Exception.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/Win64Exception.cpp @@ -38,9 +38,8 @@ using namespace llvm; Win64Exception::Win64Exception(AsmPrinter *A) - : DwarfException(A), - shouldEmitPersonality(false), shouldEmitLSDA(false), shouldEmitMoves(false) - {} + : EHStreamer(A), shouldEmitPersonality(false), shouldEmitLSDA(false), + shouldEmitMoves(false) {} Win64Exception::~Win64Exception() {} @@ -108,7 +107,7 @@ void Win64Exception::endFunction(const MachineFunction *) { Asm->OutStreamer.EmitWin64EHHandlerData(); Asm->OutStreamer.EmitValue(MCSymbolRefExpr::Create(Sym, Asm->OutContext), 4); - EmitExceptionTable(); + emitExceptionTable(); Asm->OutStreamer.PopSection(); } Asm->OutStreamer.EmitWin64EHEndProc(); |