Comments for r191234 as suggested by Eric Christopher.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@191244 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/DebugInfo/DWARFContext.cpp b/lib/DebugInfo/DWARFContext.cpp
index c54a1da..95a1b62 100644
--- a/lib/DebugInfo/DWARFContext.cpp
+++ b/lib/DebugInfo/DWARFContext.cpp
@@ -626,6 +626,8 @@
         RangeDWOSection = data;
       }
     } else if (name == "debug_types") {
+      // Find debug_types data by section rather than name as there are
+      // multiple, comdat grouped, debug_types sections.
       TypesSections[*i].Data = data;
     }
 
@@ -649,6 +651,8 @@
     if (!Map) {
       if (RelSecName != "debug_types")
         continue;
+      // Find debug_types relocs by section rather than name as there are
+      // multiple, comdat grouped, debug_types sections.
       Map = &TypesSections[*RelocatedSection].Relocs;
     }