mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
subsume ConstructPointerType()
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61711 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
1ed7942e4f
commit
ca03c2705e
@ -1449,17 +1449,11 @@ private:
|
||||
/// AddPointerType - Add a new pointer type attribute to the specified entity.
|
||||
///
|
||||
void AddPointerType(DIE *Entity, CompileUnit *Unit, const std::string &Name) {
|
||||
DIE *Die = ConstructPointerType(Unit, Name);
|
||||
AddDIEntry(Entity, DW_AT_type, DW_FORM_ref4, Die);
|
||||
}
|
||||
|
||||
/// ConstructPointerType - Construct a new pointer type.
|
||||
///
|
||||
DIE *ConstructPointerType(CompileUnit *Unit, const std::string &Name) {
|
||||
DIE Buffer(DW_TAG_pointer_type);
|
||||
AddUInt(&Buffer, DW_AT_byte_size, 0, TD->getPointerSize());
|
||||
if (!Name.empty()) AddString(&Buffer, DW_AT_name, DW_FORM_string, Name);
|
||||
return Unit->AddDie(Buffer);
|
||||
DIE *PointerTypeDie = Unit->AddDie(Buffer);
|
||||
AddDIEntry(Entity, DW_AT_type, DW_FORM_ref4, PointerTypeDie);
|
||||
}
|
||||
|
||||
/// AddType - Add a new type attribute to the specified entity.
|
||||
|
Loading…
Reference in New Issue
Block a user