1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 04:02:41 +01:00

Rename a function.

llvm-svn: 100797
This commit is contained in:
Devang Patel 2010-04-08 18:43:56 +00:00
parent f6e9c0c4bd
commit 17b5b1dd88
2 changed files with 7 additions and 9 deletions

View File

@ -2241,15 +2241,14 @@ bool DwarfDebug::extractScopeInformation() {
CurrentFnDbgScope->fixInstructionMarkers(MIIndexMap);
populateDbgScopeInverseMaps();
identifyScopeMarkers();
return !DbgScopeMap.empty();
}
/// populateDbgScopeInverseMaps() - Populate DbgScopeBeginMap and
/// DbgScopeEndMap. This maps are used to indentify debug scope started
/// and ended by an instruction.
void DwarfDebug::populateDbgScopeInverseMaps() {
/// identifyScopeMarkers() - Indentify instructions that are marking
/// beginning of or end of a scope.
void DwarfDebug::identifyScopeMarkers() {
// Each scope has first instruction and last instruction to mark beginning
// and end of a scope respectively. Create an inverse map that list scopes

View File

@ -526,10 +526,9 @@ private:
return Lines.size();
}
/// populateDbgScopeInverseMaps() - Populate DbgScopeBeginMap and
/// DbgScopeEndMap. This maps are used to indentify debug scope started
/// and ended by an instruction.
void populateDbgScopeInverseMaps();
/// identifyScopeMarkers() - Indentify instructions that are marking
/// beginning of or end of a scope.
void identifyScopeMarkers();
/// extractScopeInformation - Scan machine instructions in this function
/// and collect DbgScopes. Return true, if atleast one scope was found.