Version bump

This commit is contained in:
Wilson Snyder
2009-07-14 08:42:01 -04:00
parent 96c7abdb39
commit 0607edd191
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -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
View File
@@ -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()));
+1 -1
View File
@@ -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