mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-07 06:33:24 +00:00
verilog: ignore '&&&' when not in -specify mode
This commit is contained in:
parent
b523ecf2f4
commit
2e51dc1856
3 changed files with 12 additions and 5 deletions
|
@ -440,7 +440,7 @@ import[ \t\r\n]+\"(DPI|DPI-C)\"[ \t\r\n]+function[ \t\r\n]+ {
|
|||
}
|
||||
|
||||
"&&&" {
|
||||
if (!specify_mode) REJECT;
|
||||
if (!specify_mode) return TOK_IGNORED_SPECIFY_AND;
|
||||
return TOK_SPECIFY_AND;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue