mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-15 13:28:59 +00:00
Silenced a gcc warning in spice backend
This commit is contained in:
parent
18f9477e95
commit
2864cb3b59
|
@ -139,7 +139,7 @@ struct SpiceBackend : public Backend {
|
||||||
virtual void execute(FILE *&f, std::string filename, std::vector<std::string> args, RTLIL::Design *design)
|
virtual void execute(FILE *&f, std::string filename, std::vector<std::string> args, RTLIL::Design *design)
|
||||||
{
|
{
|
||||||
std::string top_module_name;
|
std::string top_module_name;
|
||||||
RTLIL::Module *top_module;
|
RTLIL::Module *top_module = NULL;
|
||||||
bool big_endian = false;
|
bool big_endian = false;
|
||||||
std::string neg = "Vss", pos = "Vdd", ncpf = "_NC";
|
std::string neg = "Vss", pos = "Vdd", ncpf = "_NC";
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue