mirror of
https://github.com/verilator/verilator.git
synced 2025-04-05 12:12:39 +00:00
Internals: Make V3Const.cpp parseable by non-compilers (#4796)
This commit is contained in:
parent
3adb31f53b
commit
719954a24a
@ -41,6 +41,14 @@
|
||||
|
||||
VL_DEFINE_DEBUG_FUNCTIONS;
|
||||
|
||||
#define TREE_SKIP_VISIT(...)
|
||||
#define TREEOP1(...)
|
||||
#define TREEOPA(...)
|
||||
#define TREEOP(...)
|
||||
#define TREEOPS(...)
|
||||
#define TREEOPC(...)
|
||||
#define TREEOPV(...)
|
||||
|
||||
//######################################################################
|
||||
// Utilities
|
||||
|
||||
|
@ -245,8 +245,8 @@ class Cpt:
|
||||
self.output_func(lambda self: self._output_line())
|
||||
self.tree_line(func)
|
||||
didln = False
|
||||
elif not re.match(r'^\s*/[/\*]\s*TREE', line) and re.search(
|
||||
r'\s+TREE', line):
|
||||
elif not re.match(r'^\s*(#define|/[/\*])\s*TREE',
|
||||
line) and re.search(r'\s+TREE', line):
|
||||
self.error("Unknown astgen line: " + line)
|
||||
else:
|
||||
self.print(line)
|
||||
|
Loading…
Reference in New Issue
Block a user