Merge pull request #2330 from antmicro/arrays-fix-multirange-access

Fix unsupported subarray access detection
This commit is contained in:
clairexen
2020-09-17 18:21:53 +02:00
committed by GitHub
2 changed files with 13 additions and 1 deletions
+1 -1
View File
@@ -1523,7 +1523,7 @@ bool AstNode::simplify(bool const_fold, bool at_zero, bool in_lvalue, int stage,
for (int i = 0; 2*i < GetSize(id2ast->multirange_dimensions); i++)
{
if (GetSize(children[0]->children) < i)
if (GetSize(children[0]->children) <= i)
log_file_error(filename, location.first_line, "Insufficient number of array indices for %s.\n", log_id(str));
AstNode *new_index_expr = children[0]->children[i]->children.at(0)->clone();