Merged dmd 2.059beta

This commit is contained in:
Alexey Prokhin
2012-04-05 15:30:00 +04:00
77 changed files with 6909 additions and 2243 deletions
+2 -2
View File
@@ -239,7 +239,7 @@ char *TemplateInstance::mangle()
buf.writestring(p);
}
}
buf.printf("%zu%s", strlen(id), id);
buf.printf("%llu%s", (ulonglong)strlen(id), id);
id = buf.toChars();
buf.data = NULL;
//printf("TemplateInstance::mangle() %s = %s\n", toChars(), id);
@@ -293,7 +293,7 @@ char *Dsymbol::mangle()
p += 2;
buf.writestring(p);
}
buf.printf("%zu%s", strlen(id), id);
buf.printf("%llu%s", (ulonglong)strlen(id), id);
id = buf.toChars();
buf.data = NULL;
//printf("Dsymbol::mangle() %s = %s\n", toChars(), id);