1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00

Make this a bit prettier and more obvious when a derived type isn't

derived from anything.

llvm-svn: 150975
This commit is contained in:
Eric Christopher 2012-02-20 18:04:39 +00:00
parent 69a0eb9258
commit 742c530fa0

View File

@ -745,7 +745,9 @@ void DIBasicType::print(raw_ostream &OS) const {
/// print - Print derived type.
void DIDerivedType::print(raw_ostream &OS) const {
OS << "\n\t Derived From: "; getTypeDerivedFrom().print(OS);
OS << "\n\t Derived From: ";
getTypeDerivedFrom().print(OS);
OS << "\n\t";
}
/// print - Print composite type.