Internals: Make V3Const.cpp parseable by non-compilers (#4796)

This commit is contained in:
Mariusz Glebocki 2024-01-02 20:51:40 +01:00 committed by GitHub
parent 3adb31f53b
commit 719954a24a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 2 deletions

View File

@ -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

View File

@ -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)