From 6ca3a35996bbcc748d6146d5831c56989c79701c Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Sun, 5 Dec 2021 11:47:52 +0000 Subject: [PATCH] remove redundant code --- src/soc/experiment/icache.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/soc/experiment/icache.py b/src/soc/experiment/icache.py index b358b490..5279953c 100644 --- a/src/soc/experiment/icache.py +++ b/src/soc/experiment/icache.py @@ -520,10 +520,6 @@ class ICache(Elaboratable): comb += req_is_hit.eq(is_hit) comb += req_is_miss.eq(~is_hit) - with m.Else(): - comb += req_is_hit.eq(0) - comb += req_is_miss.eq(0) - comb += req_hit_way.eq(hit_way) # The way to replace on a miss -- 2.30.2