Removed problematic warning about reaching default state in HPTW

This commit is contained in:
David Harris 2022-02-18 23:08:40 +00:00
parent 3036de316a
commit a88302f0d7

View File

@ -190,10 +190,6 @@ module hptw
// else NextWalkerState = FAULT;
LEAF: NextWalkerState = IDLE; // updates TLB
default: begin
// synthesis translate_off
if (WalkerState !== 'x)
$error("Default state in HPTW should be unreachable; was %d", WalkerState);
// synthesis translate_on
NextWalkerState = IDLE; // should never be reached
end
endcase