From: Luke Kenneth Casson Leighton Date: Mon, 10 May 2021 23:25:53 +0000 (+0100) Subject: whoops, indentation issue on m.If/m.Else in dcache.py X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=59bb71d4bae586d5308df333d7c2332efa2d9301;p=soc.git whoops, indentation issue on m.If/m.Else in dcache.py --- diff --git a/src/soc/experiment/dcache.py b/src/soc/experiment/dcache.py index 65ed3465..c32ff783 100644 --- a/src/soc/experiment/dcache.py +++ b/src/soc/experiment/dcache.py @@ -1190,10 +1190,10 @@ class DCache(Elaboratable): sync += r1.mmu_error.eq(r0.mmu_req) sync += r1.cache_paradox.eq(access_ok) - with m.Else(): - sync += r1.ls_error.eq(0) - sync += r1.mmu_error.eq(0) - sync += r1.cache_paradox.eq(0) + with m.Else(): + sync += r1.ls_error.eq(0) + sync += r1.mmu_error.eq(0) + sync += r1.cache_paradox.eq(0) with m.If(req_op == Op.OP_STCX_FAIL): sync += r1.stcx_fail.eq(1)