3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-23 09:05:32 +00:00

Added library support to celltypes class and show pass

This commit is contained in:
Clifford Wolf 2013-03-03 10:36:23 +01:00
parent 4fcb9a7b99
commit 65e5e1658c
3 changed files with 74 additions and 8 deletions

View file

@ -525,7 +525,7 @@ struct ExtractPass : public Pass {
FILE *f = fopen(filename.c_str(), "wt");
if (f == NULL)
log_cmd_error("Can't open output file `%s'.\n", filename.c_str());
log_error("Can't open output file `%s'.\n", filename.c_str());
Backend::backend_call(map, f, filename, "ilang");
fclose(f);
}