Workaround bugzilla 24052 (dmd inliner slowdown) (#670)

This commit is contained in:
Dennis 2023-07-21 13:33:50 +02:00 committed by GitHub
parent d065ca4fe1
commit f33e0d2d2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -206,6 +206,11 @@ EmbeddedResource[] embedResource(string resourceName)() {
/// embed all resources from list /// embed all resources from list
EmbeddedResource[] embedResources(string[] resourceNames)() { EmbeddedResource[] embedResources(string[] resourceNames)() {
version(DigitalMars)
{
pragma(inline, false); // needed because https://issues.dlang.org/show_bug.cgi?id=24052
}
static if (resourceNames.length == 0) static if (resourceNames.length == 0)
return []; return [];
static if (resourceNames.length == 1) static if (resourceNames.length == 1)