mirror of
https://github.com/steveicarus/iverilog.git
synced 2026-09-01 18:26:23 +02:00
Given a macro definition like this: `define name `macro``text the preprocessor should expand `macro, not `macrotext, when it expands `name. This also ensures that `define name(p,s) p``_``s `define PREFIX my_prefix `define SUFFIX my_suffix `name(`PREFIX, `SUFFIX) expands to my_prefix_my_suffix as the user would expect.