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/ARMException.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/ARMException.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/ARMException.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/ARMException.cpp b/llvm/lib/CodeGen/AsmPrinter/ARMException.cpp index 5d82dd9e9a7..3cde5952acc 100644 --- a/llvm/lib/CodeGen/AsmPrinter/ARMException.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/ARMException.cpp @@ -52,21 +52,21 @@ ARMTargetStreamer &ARMException::getTargetStreamer() { return static_cast<ARMTargetStreamer &>(TS); } -void ARMException::EndModule() { +void ARMException::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 ARMException::BeginFunction(const MachineFunction *MF) { +void ARMException::beginFunction(const MachineFunction *MF) { getTargetStreamer().emitFnStart(); if (Asm->MF->getFunction()->needsUnwindTableEntry()) Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("eh_func_begin", Asm->getFunctionNumber())); } -/// EndFunction - Gather and emit post-function exception information. +/// endFunction - Gather and emit post-function exception information. /// -void ARMException::EndFunction() { +void ARMException::endFunction() { ARMTargetStreamer &ATS = getTargetStreamer(); if (!Asm->MF->getFunction()->needsUnwindTableEntry()) ATS.emitCantUnwind(); |