mirror of https://github.com/YosysHQ/yosys.git
Fixups
This commit is contained in:
parent
8171f04cbf
commit
13e053fb11
|
|
@ -83,7 +83,6 @@ YOSYS_NAMESPACE_BEGIN
|
||||||
|
|
||||||
int autoidx = 1;
|
int autoidx = 1;
|
||||||
int yosys_xtrace = 0;
|
int yosys_xtrace = 0;
|
||||||
std::set<string> seen_ids;
|
|
||||||
bool yosys_write_versions = true;
|
bool yosys_write_versions = true;
|
||||||
const char* yosys_maybe_version() {
|
const char* yosys_maybe_version() {
|
||||||
if (yosys_write_versions)
|
if (yosys_write_versions)
|
||||||
|
|
|
||||||
|
|
@ -257,7 +257,6 @@ inline int GetSize(RTLIL::Wire *wire);
|
||||||
|
|
||||||
extern int autoidx;
|
extern int autoidx;
|
||||||
extern int yosys_xtrace;
|
extern int yosys_xtrace;
|
||||||
extern std::set<string> seen_ids;
|
|
||||||
extern bool yosys_write_versions;
|
extern bool yosys_write_versions;
|
||||||
|
|
||||||
RTLIL::IdString new_id(std::string file, int line, std::string func);
|
RTLIL::IdString new_id(std::string file, int line, std::string func);
|
||||||
|
|
|
||||||
|
|
@ -407,7 +407,7 @@ std::string remap_name(RTLIL::IdString abc_name, RTLIL::Wire **orig_wire = nullp
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return abc_name.str(); // SILIMATE: Improve the naming
|
return stringf("\\%s_ix%d", abc_sname.c_str(), map_autoidx); // SILIMATE: Improve the naming
|
||||||
}
|
}
|
||||||
|
|
||||||
void dump_loop_graph(FILE *f, int &nr, dict<int, pool<int>> &edges, pool<int> &workpool, std::vector<int> &in_counts)
|
void dump_loop_graph(FILE *f, int &nr, dict<int, pool<int>> &edges, pool<int> &workpool, std::vector<int> &in_counts)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue