Don't print out unique identifier for opaque types

llvm-svn: 6511
This commit is contained in:
Chris Lattner 2003-06-01 03:45:51 +00:00
parent bf8929c4bb
commit a108915211

View File

@ -504,7 +504,7 @@ std::ostream &AssemblyWriter::printTypeAtLeastOneLevel(const Type *Ty) {
Out << "[" << ATy->getNumElements() << " x ";
printType(ATy->getElementType()) << "]";
} else if (const OpaqueType *OTy = dyn_cast<OpaqueType>(Ty)) {
Out << OTy->getDescription();
Out << "opaque";
} else {
if (!Ty->isPrimitiveType())
Out << "<unknown derived type>";