Add BLKLOOPINIT error code, and describe --unroll-count.

This commit is contained in:
Wilson Snyder
2009-06-24 17:24:42 -04:00
parent 02e6005fa9
commit ec0947ef7e
4 changed files with 28 additions and 13 deletions
+1 -1
View File
@@ -335,7 +335,7 @@ private:
&& nodep->lhsp()->castSel()->fromp()->castArraySel())) {
AstNode* lhsp = nodep->lhsp()->unlinkFrBack();
AstNode* newlhsp = createDlyArray(nodep, lhsp);
if (m_inLoop) nodep->v3error("Unsupported: Delayed assignment to array inside for loops (non-delayed is ok - see docs)");
if (m_inLoop) nodep->v3warn(BLKLOOPINIT,"Unsupported: Delayed assignment to array inside for loops (non-delayed is ok - see docs)");
if (newlhsp) {
nodep->lhsp(newlhsp);
} else {