Fix escaped preprocessor identifiers, bug106.
This commit is contained in:
parent
59b491e3a8
commit
a01c995a53
2
Changes
2
Changes
|
|
@ -11,6 +11,8 @@ indicates the contributor was also the author of the fix; Thanks!
|
||||||
|
|
||||||
*** Name SYMRSVDWORD error, and allow disabling it, bug103. [Gary Thomas]
|
*** Name SYMRSVDWORD error, and allow disabling it, bug103. [Gary Thomas]
|
||||||
|
|
||||||
|
**** Fix escaped preprocessor identifiers, bug106. [Nimrod Gileadi]
|
||||||
|
|
||||||
* Verilator 3.712 2009/07/14
|
* Verilator 3.712 2009/07/14
|
||||||
|
|
||||||
** Patching SystemC is no longer required to trace sc_bvs.
|
** Patching SystemC is no longer required to trace sc_bvs.
|
||||||
|
|
|
||||||
|
|
@ -69,7 +69,7 @@ wsn [ \t\f]
|
||||||
crnl [\r]*[\n]
|
crnl [\r]*[\n]
|
||||||
quote [\"]
|
quote [\"]
|
||||||
backslash [\\]
|
backslash [\\]
|
||||||
symb [a-zA-Z_][a-zA-Z0-9_$]*
|
symb ([a-zA-Z_][a-zA-Z0-9_$]*|\\[^ \t\f\r\n]+)
|
||||||
drop [\032]
|
drop [\032]
|
||||||
psl [p]sl
|
psl [p]sl
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue