1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

Print opaque types

llvm-svn: 6200
This commit is contained in:
Chris Lattner 2003-05-14 17:50:47 +00:00
parent 0353c32bbe
commit cb3df29c52

View File

@ -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>";
}