mirror of
https://github.com/verilator/verilator.git
synced 2025-04-04 19:52:39 +00:00
Fix unique {} constraints missing semicolon (#5001)
Signed-off-by: Arkadiusz Kozdra <akozdra@antmicro.com>
This commit is contained in:
parent
5c0a7e06dc
commit
26f15e11c4
@ -7337,7 +7337,7 @@ constraint_expression<nodep>: // ==IEEE: constraint_expression
|
||||
$$ = newp; }
|
||||
// // 1800-2012:
|
||||
// // IEEE: uniqueness_constraint ';'
|
||||
| yUNIQUE '{' range_list '}'
|
||||
| yUNIQUE '{' range_list '}' ';'
|
||||
{ $$ = new AstConstraintUnique{$1, $3}; }
|
||||
// // IEEE: expr yP_MINUSGT constraint_set
|
||||
// // Conflicts with expr:"expr yP_MINUSGT expr"; rule moved there
|
||||
|
@ -37,7 +37,7 @@ class Packet;
|
||||
foreach (array[i]) {
|
||||
array[i] inside {2, 4, 6};
|
||||
}
|
||||
unique { array[0], array[1] }
|
||||
unique { array[0], array[1] };
|
||||
}
|
||||
|
||||
constraint order { solve length before header; }
|
||||
|
@ -37,7 +37,7 @@ class Packet;
|
||||
foreach (array[i]) {
|
||||
array[i] inside {2, 4, 6};
|
||||
}
|
||||
unique { array[0], array[1] }
|
||||
unique { array[0], array[1] };
|
||||
}
|
||||
|
||||
constraint order { solve length before header; }
|
||||
|
@ -37,7 +37,7 @@ class Packet;
|
||||
foreach (array[i]) {
|
||||
array[i] inside {2, 4, 6};
|
||||
}
|
||||
unique { array[0], array[1] }
|
||||
unique { array[0], array[1] };
|
||||
}
|
||||
|
||||
constraint order { solve length before header; }
|
||||
|
Loading…
Reference in New Issue
Block a user