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:
parent
0353c32bbe
commit
cb3df29c52
@ -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>";
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user