diff options
author | Devang Patel <dpatel@apple.com> | 2009-01-05 19:07:53 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2009-01-05 19:07:53 +0000 |
commit | 2c2eeabb54f26cf50aeb0b1b374223e0d67eb303 (patch) | |
tree | eee42031a2ad3ca9bd399f4f359584f1501eaa16 | |
parent | b0794619e636c3d4a0ce4f8289fc91143b45607b (diff) | |
download | bcm5719-llvm-2c2eeabb54f26cf50aeb0b1b374223e0d67eb303.tar.gz bcm5719-llvm-2c2eeabb54f26cf50aeb0b1b374223e0d67eb303.zip |
s/ConstructType/ConstructTypeDIE/g
llvm-svn: 61731
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfWriter.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfWriter.cpp b/llvm/lib/CodeGen/AsmPrinter/DwarfWriter.cpp index 022ff9a82a2..8739c313792 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfWriter.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfWriter.cpp @@ -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(); |