diff options
Diffstat (limited to 'llvm/lib/VMCore/AsmWriter.cpp')
| -rw-r--r-- | llvm/lib/VMCore/AsmWriter.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/llvm/lib/VMCore/AsmWriter.cpp b/llvm/lib/VMCore/AsmWriter.cpp index 7c58e63275a..7695fcb7500 100644 --- a/llvm/lib/VMCore/AsmWriter.cpp +++ b/llvm/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>"; | 

