Skip to content

Commit

Permalink
[asl] Fix forgotten z in bitvector lexing
Browse files Browse the repository at this point in the history
  • Loading branch information
HadrienRenaud committed Jan 24, 2025
1 parent 6cf12ec commit 9ef7a49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion asllib/Lexer.mll
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ let hex_lit = '0' 'x' (digit | hex_alpha) ('_' | digit | hex_alpha)*
let real_lit = digit ('_' | digit)* '.' digit ('_' | digit)*
let alpha = ['a'-'z' 'A'-'Z']
let string_lit = '"' [^ '"']* '"'
let bits = ['0' '1' 'z' ' ']*
let bits = ['0' '1' ' ']*
let mask = ['0' '1' 'x' ' ']*
let identifier = (alpha | '_') (alpha|digit|'_')*

Expand Down

0 comments on commit 9ef7a49

Please sign in to comment.