Skip to content

Commit 9d31a4a

Browse files
committed
modify the flex file to skip ! operator
1 parent 2a7e1fc commit 9d31a4a

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

libs/libvqm/vqm_parser.l

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
%%
4040
^[ \t]*\/\/[^\n\r]*(\n|\r\n) /* skip one-line comments */
4141
[ \t]+ /* skip white spaces */
42+
! /* skip the logical operator ! applied on the input ports of the lut - this results in lut mask not being valid anoymore */
4243
(\n|\r\n) /* skip empty lines */
4344
module return TOKEN_MODULE;
4445
endmodule return TOKEN_ENDMODULE;

0 commit comments

Comments
 (0)