mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-30 04:15:52 +00:00
Update yosys from upstream
This commit is contained in:
commit
e23e33441f
13 changed files with 95 additions and 23 deletions
|
@ -17,12 +17,7 @@
|
|||
*
|
||||
* ---
|
||||
*
|
||||
* This is the AST frontend library.
|
||||
*
|
||||
* The AST frontend library is not a frontend on it's own but provides a
|
||||
* generic abstract syntax tree (AST) abstraction for HDL code and can be
|
||||
* used by HDL frontends. See "ast.h" for an overview of the API and the
|
||||
* Verilog frontend for an usage example.
|
||||
* This is support code for the Verilog frontend at frontends/verilog
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
@ -3687,6 +3687,12 @@ struct VerificPass : public Pass {
|
|||
verific_error_msg.clear();
|
||||
log_cmd_error("Reading Verilog/SystemVerilog sources failed.\n");
|
||||
}
|
||||
char* fn;
|
||||
int i = 0;
|
||||
|
||||
FOREACH_ARRAY_ITEM(&file_names, i, fn) {
|
||||
free(fn);
|
||||
}
|
||||
set_modules_to_blackbox(map, work, flag_lib);
|
||||
verific_import_pending = true;
|
||||
goto check_error;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue