s/ConstructType/ConstructTypeDIE/g
[oota-llvm.git] / lib / CodeGen / AsmPrinter / DwarfWriter.cpp
index 022ff9a82a2e971f59615d11fa05a24132203cc2..8739c3137923662a9ff361900acd30b27b4b6653 100644 (file)
@@ -1497,9 +1497,9 @@ private:
     }
   }
 
-  /// ConstructType - Construct basic type die from DIBasicType.
-  void ConstructType(CompileUnit *DW_Unit, DIE &Buffer,
-                     DIBasicType *BTy) {
+  /// ConstructTypeDIE - Construct basic type die from DIBasicType.
+  void ConstructTypeDIE(CompileUnit *DW_Unit, DIE &Buffer,
+                        DIBasicType *BTy) {
     
     // Get core information.
     const std::string &Name = BTy->getName();
@@ -1512,9 +1512,9 @@ private:
     AddUInt(&Buffer, DW_AT_byte_size, 0, Size);
   }
 
-  /// ConstructType - Construct derived type die from DIDerivedType.
-  void ConstructType(CompileUnit *DW_Unit, DIE &Buffer,
-                     DIDerivedType *DTy) {
+  /// ConstructTypeDIE - Construct derived type die from DIDerivedType.
+  void ConstructTypeDIE(CompileUnit *DW_Unit, DIE &Buffer,
+                        DIDerivedType *DTy) {
 
     // Get core information.
     const std::string &Name = DTy->getName();