mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-21 18:24:23 +00:00
Rename DwarfException methods so the new names are consistent with DwarfDebug and the style guide
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@195763 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -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();
|
||||
|
Reference in New Issue
Block a user