mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-03 18:32:50 +00:00
If a derived type is also a composite type, print that information
too. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@150974 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
9f90e8760f
commit
dc1eeb89f2
@ -721,8 +721,13 @@ void DIType::print(raw_ostream &OS) const {
|
||||
|
||||
if (isBasicType())
|
||||
DIBasicType(DbgNode).print(OS);
|
||||
else if (isDerivedType())
|
||||
DIDerivedType(DbgNode).print(OS);
|
||||
else if (isDerivedType()) {
|
||||
DIDerivedType DTy = DIDerivedType(DbgNode);
|
||||
DTy.print(OS);
|
||||
DICompositeType CTy = getDICompositeType(DTy);
|
||||
if (CTy.Verify())
|
||||
CTy.print(OS);
|
||||
}
|
||||
else if (isCompositeType())
|
||||
DICompositeType(DbgNode).print(OS);
|
||||
else {
|
||||
|
Loading…
x
Reference in New Issue
Block a user