diff options
-rw-r--r-- | lib/VMCore/AsmWriter.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/VMCore/AsmWriter.cpp b/lib/VMCore/AsmWriter.cpp index 28f26c8..7c58e63 100644 --- a/lib/VMCore/AsmWriter.cpp +++ b/lib/VMCore/AsmWriter.cpp @@ -153,6 +153,9 @@ static std::string calcTypeName(const Type *Ty, Result += calcTypeName(ATy->getElementType(), TypeStack, TypeNames) + "]"; break; } + case Type::OpaqueTyID: + Result = "opaque"; + break; default: Result = "<unrecognized-type>"; } |