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
FIRRTL version 4.0.0
circuit ZW: %[[
{
"class": "sifive.enterprise.grandcentral.DataTapsAnnotation",
"keys": [
{
"class": "sifive.enterprise.grandcentral.ReferenceDataTapKey",
"source": "~ZW|ZW>in",
"sink": "~ZW|ZW/c:Child>sink"
}
]
}
]]
module Child:
wire sink : UInt<0>
invalidate sink
public module ZW:
input in : const UInt<0>
inst c of Child
Built with firtool --lower-annotations-no-ref-type-ports this produces an error:
tap_zw_const.fir:21:11: error: Wiring Problem source type '!firrtl.const.uint<0>' does not match sink type '!firrtl.uint<0>'
input in : const UInt<0>
^
tap_zw_const.fir:16:5: note: The sink is here.
wire sink : UInt<0>
^
Add test as "legacy wiring" as non-ref-type-port path is a hidden option.
Compatibility dest/source operands were backwards,
introduced in llvm#4656 .
Fixesllvm#6819.
Add test as "legacy wiring" as non-ref-type-port path is a hidden option.
Compatibility dest/source operands were backwards,
introduced in llvm#4656 .
Fixesllvm#6819.
Compatibility dest/source operands were backwards,
introduced in #4656 .
Add test as "legacy wiring" as non-ref-type-port path is a hidden option.
Fixes#6819.
Consider:
Built with
firtool --lower-annotations-no-ref-type-ports
this produces an error:cc #4651.
The text was updated successfully, but these errors were encountered: