diff options
author | Chris Lattner <sabre@nondot.org> | 2003-06-01 03:45:51 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-06-01 03:45:51 +0000 |
commit | 26c6915539bbe3393450ece5d82d7d9ea546d417 (patch) | |
tree | c72ed9d01fedf3769d45a75ad4de1c257480d6f3 | |
parent | 20772547c5b685701e75d64118a2402a1f7bc796 (diff) |
Don't print out unique identifier for opaque types
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6511 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/VMCore/AsmWriter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VMCore/AsmWriter.cpp b/lib/VMCore/AsmWriter.cpp index 7c58e63275..7695fcb750 100644 --- a/lib/VMCore/AsmWriter.cpp +++ b/lib/VMCore/AsmWriter.cpp @@ -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>"; |