forked from github/verilator
Fix foreach segmentation fault (#3400).
This commit is contained in:
parent
a6d678d41d
commit
5de1c619c8
@ -55,6 +55,7 @@ Josh Redford
|
||||
Julie Schwartz
|
||||
Julien Margetts
|
||||
Kaleb Barrett
|
||||
Kamil Rakoczy
|
||||
Kanad Kanhere
|
||||
Keith Colbert
|
||||
Kevin Kiningham
|
||||
|
@ -3794,8 +3794,9 @@ private:
|
||||
const AstSelLoopVars* const loopsp = VN_CAST(nodep->arrayp(), SelLoopVars);
|
||||
UASSERT_OBJ(loopsp, nodep, "No loop variables under foreach");
|
||||
// if (debug()) nodep->dumpTree(cout, "-foreach-old: ");
|
||||
userIterateAndNext(loopsp->fromp(), WidthVP(SELF, BOTH).p());
|
||||
AstNode* const fromp = loopsp->fromp();
|
||||
userIterateAndNext(fromp, WidthVP(SELF, BOTH).p());
|
||||
UASSERT_OBJ(fromp->dtypep(), fromp, "Missing data type");
|
||||
AstNodeDType* fromDtp = fromp->dtypep()->skipRefp();
|
||||
// Split into for loop
|
||||
AstNode* bodyp = nodep->bodysp(); // Might be null
|
||||
|
@ -112,12 +112,10 @@ module t (/*AUTOARG*/);
|
||||
strarray[1].mid.subarray[1] = 5;
|
||||
strarray[2].mid.subarray[0] = 6;
|
||||
strarray[2].mid.subarray[1] = 7;
|
||||
`ifndef VERILATOR // Unsupported
|
||||
foreach (strarray[s])
|
||||
foreach (strarray[s].mid.subarray[ss])
|
||||
add += strarray[s].mid.subarray[ss];
|
||||
`checkh(add, 'h19);
|
||||
`endif
|
||||
|
||||
add = 0;
|
||||
foreach (oned[i]) begin
|
||||
|
Loading…
Reference in New Issue
Block a user