mirror of
https://github.com/verilator/verilator.git
synced 2026-08-22 14:06:52 +02:00
Version bump
This commit is contained in:
@@ -3,7 +3,7 @@ Revision history for Verilator
|
|||||||
The contributors that suggested a given feature are shown in []. [by ...]
|
The contributors that suggested a given feature are shown in []. [by ...]
|
||||||
indicates the contributor was also the author of the fix; Thanks!
|
indicates the contributor was also the author of the fix; Thanks!
|
||||||
|
|
||||||
* Verilator 3.712 2009/**
|
* Verilator 3.712 2009/07/14
|
||||||
|
|
||||||
** Patching SystemC is no longer required to trace sc_bvs.
|
** Patching SystemC is no longer required to trace sc_bvs.
|
||||||
|
|
||||||
|
|||||||
+2
-2
@@ -291,7 +291,7 @@ private:
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
virtual void visit(AstNodeCond* nodep, AstNUser*) {
|
virtual void visit(AstNodeCond* nodep, AstNUser*) {
|
||||||
// We could use above visit(AstNodeTriop), but it's slower to evaluate
|
// We could use above visit(AstNodeTriop), but it's slower even O(n^2) to evaluate
|
||||||
// both sides when we really only need to evaluate one side.
|
// both sides when we really only need to evaluate one side.
|
||||||
if (m_checking) {
|
if (m_checking) {
|
||||||
if (!optimizable()) return; // Accelerate
|
if (!optimizable()) return; // Accelerate
|
||||||
@@ -328,7 +328,7 @@ private:
|
|||||||
nodep->rhsp()->iterateAndNext(*this);
|
nodep->rhsp()->iterateAndNext(*this);
|
||||||
AstVarScope* vscp = nodep->lhsp()->castVarRef()->varScopep();
|
AstVarScope* vscp = nodep->lhsp()->castVarRef()->varScopep();
|
||||||
if (nodep->castAssignDly()) {
|
if (nodep->castAssignDly()) {
|
||||||
// Don't do setNumber, as value isn't visible to new statements
|
// Don't do setNumber, as value isn't yet visible to following statements
|
||||||
setOutNumber(vscp, fetchNumber(nodep->rhsp()));
|
setOutNumber(vscp, fetchNumber(nodep->rhsp()));
|
||||||
} else {
|
} else {
|
||||||
setNumber(vscp, fetchNumber(nodep->rhsp()));
|
setNumber(vscp, fetchNumber(nodep->rhsp()));
|
||||||
|
|||||||
@@ -25,7 +25,7 @@
|
|||||||
//**********************************************************************
|
//**********************************************************************
|
||||||
//**** Version and host name
|
//**** Version and host name
|
||||||
|
|
||||||
#define DTVERSION "Verilator 3.711 2009/05/19"
|
#define DTVERSION "Verilator 3.712 2009/07/14"
|
||||||
|
|
||||||
//**********************************************************************
|
//**********************************************************************
|
||||||
//**** Functions
|
//**** Functions
|
||||||
|
|||||||
Reference in New Issue
Block a user