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:
Timur Iskhodzhanov
2013-11-26 13:34:55 +00:00
parent 2254509d71
commit 45ab4750de
6 changed files with 50 additions and 50 deletions

View File

@@ -717,20 +717,20 @@ void DwarfException::EmitTypeInfos(unsigned TTypeEncoding) {
}
}
/// EndModule - Emit all exception information that should come after the
/// endModule - Emit all exception information that should come after the
/// content.
void DwarfException::EndModule() {
void DwarfException::endModule() {
llvm_unreachable("Should be implemented");
}
/// 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 DwarfException::BeginFunction(const MachineFunction *MF) {
void DwarfException::beginFunction(const MachineFunction *MF) {
llvm_unreachable("Should be implemented");
}
/// EndFunction - Gather and emit post-function exception information.
/// endFunction - Gather and emit post-function exception information.
///
void DwarfException::EndFunction() {
void DwarfException::endFunction() {
llvm_unreachable("Should be implemented");
}