Mangling: de- and re-mangling of GenericTypeParamDecl

This is also missing in the old mangling
This commit is contained in:
Erik Eckstein
2016-12-06 15:33:38 -08:00
parent b0c95278e1
commit d94dd580f6
5 changed files with 13 additions and 0 deletions

View File

@@ -1668,6 +1668,10 @@ void Remangler::mangleReflectionMetadataSuperclassDescriptor(Node *node) {
Out << "MRc";
}
void Remangler::mangleGenericTypeParamDecl(Node *node) {
unreachable("todo");
}
void Remangler::mangleCurryThunk(Node *node, EntityContext &ctx) {
Out << "<curry-thunk>";
}