You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For the following test, I expect both instances m and p to be removed, but for some reason only p is removed:
circuitFoo:
moduleFoo:
inputin : UInt<1>outputout : UInt<1>outputout2 : UInt<1>inst m of Child
m.in <= in
inst m2 of Child
m2.in <= in
out <= m2.out
inst p of PassThrough
p.in <= in
inst p2 of PassThrough
p2.in <= in
out2 <= p2.out
modulePassThrough :
inputin : UInt<1>outputout : UInt<1>
out <= in
moduleChild :
inputin : UInt<1>outputout : UInt<1>inst output_chain of PassThrough
output_chain.in <= in
out <= output_chain.out
For the following test, I expect both instances
m
andp
to be removed, but for some reason onlyp
is removed:running with
firtool imdce.fir
gives:This is a regression which was introduced in #5226.
The text was updated successfully, but these errors were encountered: