From 1da79d04a89573850d3e0108ce644aa6d8a23d81 Mon Sep 17 00:00:00 2001 From: rsetaluri Date: Fri, 22 Sep 2023 15:41:01 -0700 Subject: [PATCH] Update comment --- magma/passes/split_when_utils.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/magma/passes/split_when_utils.py b/magma/passes/split_when_utils.py index 04254d311..de94f879e 100644 --- a/magma/passes/split_when_utils.py +++ b/magma/passes/split_when_utils.py @@ -55,9 +55,7 @@ def _emit_new_when_assign(value, driver_map, curr_block): def _build_driver_map(drivee): - """ - driver_map: for each context that drivee is driven, store the driver - """ + # driver_map stores the driver for each context that drivee is driven. driver_map = {} for ctx in drivee._wired_when_contexts: wires = ctx.get_conditional_wires_for_drivee(drivee)