Corrected a bounds check on sub-arrays inside bundles, that prevents

the bundle from being parsed correctly when any sub-array is only one
bit wide.
This commit is contained in:
Tim Edwards 2020-08-03 22:57:19 -04:00
parent 4ee3a1464b
commit 82be18ec4b
1 changed files with 1 additions and 1 deletions

View File

@ -1867,7 +1867,7 @@ nextinst:
if (is_bundle &&
((i == -1) ||
((wbb.start > wbb.end) && (i < wbb.end)) ||
((wbb.start < wbb.end) && (i > wbb.end)))) {
((wbb.start <= wbb.end) && (i > wbb.end)))) {
if (bptr) *bptr = '[';
netname = cptr + 1;