1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

[dsymutil] Downcase a function name.

llvm-svn: 229182
This commit is contained in:
Frederic Riss 2015-02-13 23:18:31 +00:00
parent 465bb9ed6a
commit bfcbbbb36a

View File

@ -188,15 +188,15 @@ void DwarfLinker::reportWarning(const Twine &Warning, const DWARFUnit *Unit,
/// \brief Recursive helper to gather the child->parent relationships in the
/// original compile unit.
void GatherDIEParents(const DWARFDebugInfoEntryMinimal *DIE, unsigned ParentIdx,
CompileUnit &CU) {
static void gatherDIEParents(const DWARFDebugInfoEntryMinimal *DIE,
unsigned ParentIdx, CompileUnit &CU) {
unsigned MyIdx = CU.getOrigUnit().getDIEIndex(DIE);
CU.getInfo(MyIdx).ParentIdx = ParentIdx;
if (DIE->hasChildren())
for (auto *Child = DIE->getFirstChild(); Child && !Child->isNULL();
Child = Child->getSibling())
GatherDIEParents(Child, MyIdx, CU);
gatherDIEParents(Child, MyIdx, CU);
}
void DwarfLinker::startDebugObject(DWARFContext &Dwarf) {
@ -329,7 +329,7 @@ bool DwarfLinker::link(const DebugMap &Map) {
CUDie->dump(outs(), CU.get(), 0);
}
Units.emplace_back(*CU);
GatherDIEParents(CUDie, 0, Units.back());
gatherDIEParents(CUDie, 0, Units.back());
}
// Clean-up before starting working on the next object.