Fix SystemC signal copy macro use (#4135).
This commit is contained in:
parent
cfce92645f
commit
5efe9367d2
1
Changes
1
Changes
|
|
@ -25,6 +25,7 @@ Verilator 5.011 devel
|
||||||
* Fix crash on duplicate imported modules (#3231). [Robert Balas]
|
* Fix crash on duplicate imported modules (#3231). [Robert Balas]
|
||||||
* Fix false WIDTHEXPAND on array declarations (#3959). [JOTEGO]
|
* Fix false WIDTHEXPAND on array declarations (#3959). [JOTEGO]
|
||||||
* Fix marking overridden methods as coroutines (#4120) (#4169). [Krzysztof Bieganski, Antmicro Ltd]
|
* Fix marking overridden methods as coroutines (#4120) (#4169). [Krzysztof Bieganski, Antmicro Ltd]
|
||||||
|
* Fix SystemC signal copy macro use (#4135). [Josep Sans]
|
||||||
* Fix duplicate static names in blocks in functions (#4144) (#4160). [Stefan Wallentowitz]
|
* Fix duplicate static names in blocks in functions (#4144) (#4160). [Stefan Wallentowitz]
|
||||||
* Fix initialization order of initial static after function/task (#4159). [Kamil Rakoczy, Antmicro Ltd]
|
* Fix initialization order of initial static after function/task (#4159). [Kamil Rakoczy, Antmicro Ltd]
|
||||||
* Fix linking AstRefDType if it has parameterized class ref (#4164) (#4170). [Ryszard Rozak, Antmicro Ltd]
|
* Fix linking AstRefDType if it has parameterized class ref (#4164) (#4170). [Ryszard Rozak, Antmicro Ltd]
|
||||||
|
|
|
||||||
|
|
@ -437,6 +437,7 @@ class AstToDfgVisitor final : public VNVisitor {
|
||||||
void visit(AstCell* nodep) override { markReferenced(nodep); }
|
void visit(AstCell* nodep) override { markReferenced(nodep); }
|
||||||
void visit(AstNodeProcedure* nodep) override { markReferenced(nodep); }
|
void visit(AstNodeProcedure* nodep) override { markReferenced(nodep); }
|
||||||
void visit(AstVar* nodep) override {
|
void visit(AstVar* nodep) override {
|
||||||
|
if (nodep->isSc()) return;
|
||||||
// No need to (and in fact cannot) handle variables with unsupported dtypes
|
// No need to (and in fact cannot) handle variables with unsupported dtypes
|
||||||
if (!DfgVertex::isSupportedDType(nodep->dtypep())) return;
|
if (!DfgVertex::isSupportedDType(nodep->dtypep())) return;
|
||||||
// Mark ports as having external references
|
// Mark ports as having external references
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue