mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +00:00
Debug Info: fix typo in function name.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@194975 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
9564d643d7
commit
6950be2851
@ -777,7 +777,7 @@ public:
|
||||
|
||||
private:
|
||||
/// Initialize TypeIdentifierMap.
|
||||
void IntializeTypeMap(const Module &M);
|
||||
void InitializeTypeMap(const Module &M);
|
||||
|
||||
/// processType - Process DIType.
|
||||
void processType(DIType DT);
|
||||
|
@ -954,7 +954,7 @@ void DebugInfoFinder::reset() {
|
||||
TypeMapInitialized = false;
|
||||
}
|
||||
|
||||
void DebugInfoFinder::IntializeTypeMap(const Module &M) {
|
||||
void DebugInfoFinder::InitializeTypeMap(const Module &M) {
|
||||
if (!TypeMapInitialized)
|
||||
if (NamedMDNode *CU_Nodes = M.getNamedMetadata("llvm.dbg.cu")) {
|
||||
TypeIdentifierMap = generateDITypeIdentifierMap(CU_Nodes);
|
||||
@ -964,7 +964,7 @@ void DebugInfoFinder::IntializeTypeMap(const Module &M) {
|
||||
|
||||
/// processModule - Process entire module and collect debug info.
|
||||
void DebugInfoFinder::processModule(const Module &M) {
|
||||
IntializeTypeMap(M);
|
||||
InitializeTypeMap(M);
|
||||
if (NamedMDNode *CU_Nodes = M.getNamedMetadata("llvm.dbg.cu")) {
|
||||
for (unsigned i = 0, e = CU_Nodes->getNumOperands(); i != e; ++i) {
|
||||
DICompileUnit CU(CU_Nodes->getOperand(i));
|
||||
@ -1005,7 +1005,7 @@ void DebugInfoFinder::processModule(const Module &M) {
|
||||
void DebugInfoFinder::processLocation(const Module &M, DILocation Loc) {
|
||||
if (!Loc)
|
||||
return;
|
||||
IntializeTypeMap(M);
|
||||
InitializeTypeMap(M);
|
||||
processScope(Loc.getScope());
|
||||
processLocation(M, Loc.getOrigLocation());
|
||||
}
|
||||
@ -1099,7 +1099,7 @@ void DebugInfoFinder::processDeclare(const Module &M,
|
||||
MDNode *N = dyn_cast<MDNode>(DDI->getVariable());
|
||||
if (!N)
|
||||
return;
|
||||
IntializeTypeMap(M);
|
||||
InitializeTypeMap(M);
|
||||
|
||||
DIDescriptor DV(N);
|
||||
if (!DV.isVariable())
|
||||
@ -1115,7 +1115,7 @@ void DebugInfoFinder::processValue(const Module &M, const DbgValueInst *DVI) {
|
||||
MDNode *N = dyn_cast<MDNode>(DVI->getVariable());
|
||||
if (!N)
|
||||
return;
|
||||
IntializeTypeMap(M);
|
||||
InitializeTypeMap(M);
|
||||
|
||||
DIDescriptor DV(N);
|
||||
if (!DV.isVariable())
|
||||
|
Loading…
Reference in New Issue
Block a user