diff options
author | Timur Iskhodzhanov <timurrrr@google.com> | 2013-11-26 13:34:55 +0000 |
---|---|---|
committer | Timur Iskhodzhanov <timurrrr@google.com> | 2013-11-26 13:34:55 +0000 |
commit | 119f3073173cf6ae02d632d21e3926fcdac853fe (patch) | |
tree | 53709b2d629eecf100aa0db8715b65f8f330da30 /llvm/lib/CodeGen/AsmPrinter/Win64Exception.cpp | |
parent | fd1d7002e264ed976475780a351f812676b01958 (diff) | |
download | bcm5719-llvm-119f3073173cf6ae02d632d21e3926fcdac853fe.tar.gz bcm5719-llvm-119f3073173cf6ae02d632d21e3926fcdac853fe.zip |
Rename DwarfException methods so the new names are consistent with DwarfDebug and the style guide
llvm-svn: 195763
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/Win64Exception.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/Win64Exception.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/Win64Exception.cpp b/llvm/lib/CodeGen/AsmPrinter/Win64Exception.cpp index 156101286b7..39113d618e8 100644 --- a/llvm/lib/CodeGen/AsmPrinter/Win64Exception.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/Win64Exception.cpp @@ -44,14 +44,14 @@ Win64Exception::Win64Exception(AsmPrinter *A) Win64Exception::~Win64Exception() {} -/// EndModule - Emit all exception information that should come after the +/// endModule - Emit all exception information that should come after the /// content. -void Win64Exception::EndModule() { +void Win64Exception::endModule() { } -/// BeginFunction - Gather pre-function exception information. Assumes it's +/// beginFunction - Gather pre-function exception information. Assumes it's /// being emitted immediately after the function entry point. -void Win64Exception::BeginFunction(const MachineFunction *MF) { +void Win64Exception::beginFunction(const MachineFunction *MF) { shouldEmitMoves = shouldEmitPersonality = shouldEmitLSDA = false; // If any landing pads survive, we need an EH table. @@ -86,9 +86,9 @@ void Win64Exception::BeginFunction(const MachineFunction *MF) { Asm->getFunctionNumber())); } -/// EndFunction - Gather and emit post-function exception information. +/// endFunction - Gather and emit post-function exception information. /// -void Win64Exception::EndFunction() { +void Win64Exception::endFunction() { if (!shouldEmitPersonality && !shouldEmitMoves) return; |