mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-07 06:33:24 +00:00
Fix minor typo in error message
Signed-off-by: Clifford Wolf <clifford@clifford.at>
This commit is contained in:
parent
6cd5b8b76b
commit
5ab58d4930
1 changed files with 1 additions and 1 deletions
|
@ -1478,7 +1478,7 @@ behavioral_stmt:
|
||||||
node->str = *$3;
|
node->str = *$3;
|
||||||
} behavioral_stmt_list TOK_END opt_label {
|
} behavioral_stmt_list TOK_END opt_label {
|
||||||
if ($3 != NULL && $7 != NULL && *$3 != *$7)
|
if ($3 != NULL && $7 != NULL && *$3 != *$7)
|
||||||
frontend_verilog_yyerror("Begin label (%s) and end label (%s) doesn't match.", $3->c_str()+1, $7->c_str()+1);
|
frontend_verilog_yyerror("Begin label (%s) and end label (%s) don't match.", $3->c_str()+1, $7->c_str()+1);
|
||||||
if ($3 != NULL)
|
if ($3 != NULL)
|
||||||
delete $3;
|
delete $3;
|
||||||
if ($7 != NULL)
|
if ($7 != NULL)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue