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 300871076e
commit 4826c8fbe8
1 changed files with 3 additions and 1 deletions

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.