s/ConstructType/ConstructTypeDIE/g

llvm-svn: 61731
This commit is contained in:
Devang Patel 2009-01-05 19:07:53 +00:00
parent b0794619e6
commit 2c2eeabb54
1 changed files with 6 additions and 6 deletions

View 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();