forked from github/verilator
Don't mangle run-time library method names.
This commit is contained in:
parent
f1ea30f257
commit
a9cd2998e5
1
Changes
1
Changes
@ -22,6 +22,7 @@ Verilator 4.221 devel
|
|||||||
* Fix filenames with dots overwriting debug .vpp files (#3373).
|
* Fix filenames with dots overwriting debug .vpp files (#3373).
|
||||||
* Fix including VK_USER_OBJS in make library (#3370). [Julien Margetts]
|
* Fix including VK_USER_OBJS in make library (#3370). [Julien Margetts]
|
||||||
* Fix crash in recursive module inlining (#3393). [david-sawatzke]
|
* Fix crash in recursive module inlining (#3393). [david-sawatzke]
|
||||||
|
* Fix --protect-ids mangling names of library methods. [Geza Lore, Shunyao CAD]
|
||||||
|
|
||||||
Verilator 4.220 2022-03-12
|
Verilator 4.220 2022-03-12
|
||||||
==========================
|
==========================
|
||||||
|
@ -406,7 +406,7 @@ public:
|
|||||||
virtual void visit(AstCMethodHard* nodep) override {
|
virtual void visit(AstCMethodHard* nodep) override {
|
||||||
iterate(nodep->fromp());
|
iterate(nodep->fromp());
|
||||||
puts(".");
|
puts(".");
|
||||||
puts(nodep->nameProtect());
|
puts(nodep->name());
|
||||||
puts("(");
|
puts("(");
|
||||||
bool comma = false;
|
bool comma = false;
|
||||||
for (AstNode* subnodep = nodep->pinsp(); subnodep; subnodep = subnodep->nextp()) {
|
for (AstNode* subnodep = nodep->pinsp(); subnodep; subnodep = subnodep->nextp()) {
|
||||||
|
Loading…
Reference in New Issue
Block a user