Fix unique {} constraints missing semicolon (#5001)

Signed-off-by: Arkadiusz Kozdra <akozdra@antmicro.com>
This commit is contained in:
Arkadiusz Kozdra 2024-03-19 13:22:39 +01:00 committed by GitHub
parent 5c0a7e06dc
commit 26f15e11c4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 4 additions and 4 deletions

View File

@ -7337,7 +7337,7 @@ constraint_expression<nodep>: // ==IEEE: constraint_expression
$$ = newp; } $$ = newp; }
// // 1800-2012: // // 1800-2012:
// // IEEE: uniqueness_constraint ';' // // IEEE: uniqueness_constraint ';'
| yUNIQUE '{' range_list '}' | yUNIQUE '{' range_list '}' ';'
{ $$ = new AstConstraintUnique{$1, $3}; } { $$ = new AstConstraintUnique{$1, $3}; }
// // IEEE: expr yP_MINUSGT constraint_set // // IEEE: expr yP_MINUSGT constraint_set
// // Conflicts with expr:"expr yP_MINUSGT expr"; rule moved there // // Conflicts with expr:"expr yP_MINUSGT expr"; rule moved there

View File

@ -37,7 +37,7 @@ class Packet;
foreach (array[i]) { foreach (array[i]) {
array[i] inside {2, 4, 6}; array[i] inside {2, 4, 6};
} }
unique { array[0], array[1] } unique { array[0], array[1] };
} }
constraint order { solve length before header; } constraint order { solve length before header; }

View File

@ -37,7 +37,7 @@ class Packet;
foreach (array[i]) { foreach (array[i]) {
array[i] inside {2, 4, 6}; array[i] inside {2, 4, 6};
} }
unique { array[0], array[1] } unique { array[0], array[1] };
} }
constraint order { solve length before header; } constraint order { solve length before header; }

View File

@ -37,7 +37,7 @@ class Packet;
foreach (array[i]) { foreach (array[i]) {
array[i] inside {2, 4, 6}; array[i] inside {2, 4, 6};
} }
unique { array[0], array[1] } unique { array[0], array[1] };
} }
constraint order { solve length before header; } constraint order { solve length before header; }