Merge pull request #2450 from nitz/sim-vcd-filename

Add rewrite_filename for sim -vcd argument.
This commit is contained in:
whitequark 2020-11-25 02:48:10 +00:00 committed by GitHub
commit 2a39c785a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -810,7 +810,9 @@ struct SimPass : public Pass {
size_t argidx;
for (argidx = 1; argidx < args.size(); argidx++) {
if (args[argidx] == "-vcd" && argidx+1 < args.size()) {
worker.vcdfile.open(args[++argidx].c_str());
std::string vcd_filename = args[++argidx];
rewrite_filename(vcd_filename);
worker.vcdfile.open(vcd_filename.c_str());
continue;
}
if (args[argidx] == "-n" && argidx+1 < args.size()) {