We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebd7180 commit 5936808Copy full SHA for 5936808
source/backends/arm64.d
@@ -1060,7 +1060,10 @@ class BackendARM64 : CompilerBackend {
1060
}
1061
1062
word.symbolName = node.func;
1063
- funcName = node.asName;
+
1064
+ if (node.asName != "") {
1065
+ funcName = node.asName;
1066
+ }
1067
break;
1068
1069
source/backends/x86_64.d
@@ -1152,7 +1152,10 @@ class BackendX86_64 : CompilerBackend {
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
0 commit comments