Skip to content

Commit 850585f

Browse files
committed
delete the win64 core
1 parent 03274e2 commit 850585f

File tree

4 files changed

+2
-115
lines changed

4 files changed

+2
-115
lines changed

source/app.d

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ Flags:
3131
Backends:
3232
rm86 - Real mode x86 and MS-DOS
3333
linux86 - Linux for 64-bit x86
34-
win64 - Windows for 64-bit x86 (Work in progress)
3534
";
3635

3736
int main(string[] args) {
@@ -132,11 +131,6 @@ int main(string[] args) {
132131
backend = new BackendLinux86();
133132
break;
134133
}
135-
case "win64": {
136-
stderr.writeln("WARNING: Unstable backend");
137-
backend = new BackendWin64();
138-
break;
139-
}
140134
default: {
141135
stderr.writefln("Unknown backend '%s'", args[i]);
142136
}

source/backends/win64.d

Lines changed: 0 additions & 107 deletions
This file was deleted.

source/compiler.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ class Compiler {
148148
auto node = cast(RequiresNode) inode;
149149

150150
if (!versions.canFind(node.ver)) {
151-
backend.Error(node.error, "Version '%s' required");
151+
backend.Error(node.error, "Version '%s' required", node.ver);
152152
}
153153
break;
154154
}

0 commit comments

Comments
 (0)