diff options
Diffstat (limited to 'src/synth/netlists-memories.adb')
-rw-r--r-- | src/synth/netlists-memories.adb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/synth/netlists-memories.adb b/src/synth/netlists-memories.adb index c1b8603ec..908087f9e 100644 --- a/src/synth/netlists-memories.adb +++ b/src/synth/netlists-memories.adb @@ -410,9 +410,9 @@ package body Netlists.Memories is Dff_Out := Get_Output (Dff_Inst, 0); if Mux_Inp = Get_Input (Mux_Inst, 1) then - return Get_Input_Net (Mux_Inst, 2) = Dff_Out; + return Skip_Signal (Get_Input_Net (Mux_Inst, 2)) = Dff_Out; else - return Get_Input_Net (Mux_Inst, 1) = Dff_Out; + return Skip_Signal (Get_Input_Net (Mux_Inst, 1)) = Dff_Out; end if; end Is_Enable_Dff; |