[dsymutil] Downcase a function name.
authorFrederic Riss <friss@apple.com>
Fri, 13 Feb 2015 23:18:31 +0000 (23:18 +0000)
committerFrederic Riss <friss@apple.com>
Fri, 13 Feb 2015 23:18:31 +0000 (23:18 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@229182 91177308-0d34-0410-b5e6-96231b3b80d8

tools/dsymutil/DwarfLinker.cpp

index fec256597be5c875bf99c053a507d20a6ea4543a..e6c8ba550bea65229581c3e1e1f486f8fa0fcc6e 100644 (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.