1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-01-23 01:16:10 +00:00

Attempt to resolve GCC's control flow concern.

This commit is contained in:
Thomas Harte
2025-11-26 22:46:42 -05:00
parent 906a16a6c1
commit 95ccdeb0e9

View File

@@ -952,6 +952,8 @@ std::unique_ptr<Machine> machine(
switch(target.model) {
using enum Analyser::Static::Enterprise::Target::Model;
default: __builtin_unreachable();
case Enterprise64:
return std::make_unique<Enterprise::ConcreteMachine<Enterprise64, has_disk_controller, true>>
(target, rom_fetcher);