From: Luke Kenneth Casson Leighton Date: Sun, 5 Dec 2021 11:47:52 +0000 (+0000) Subject: remove redundant code X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6ca3a35996bbcc748d6146d5831c56989c79701c;p=soc.git remove redundant code --- 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