Upgrade frontend & libs to early v2.095.0 (dlang/dmd@a4274b3c39)

This commit is contained in:
Martin Kinkelin 2020-11-26 21:21:50 +01:00
parent 7cd5a37401
commit 079858f3b2
89 changed files with 3068 additions and 2473 deletions

View file

@ -401,7 +401,7 @@ static void DtoCreateNestedContextType(FuncDeclaration *fd) {
t = DtoType(vd->type->pointerTo());
} else if (isParam && (vd->storage_class & STClazy)) {
// the type is a delegate (LL struct)
Type *dt = TypeFunction::create(nullptr, vd->type, VARARGnone, LINKd);
Type *dt = TypeFunction::create(nullptr, vd->type, VARARGnone, LINK::d);
dt = createTypeDelegate(dt);
t = DtoType(dt);
} else {