diff options
author | Clifford Wolf <clifford@clifford.at> | 2015-08-05 22:11:10 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2015-08-05 22:11:26 +0200 |
commit | 6834461f6513adfafedd24127860b4fde4600cef (patch) | |
tree | 49898eab0e0034eca2a586463317aa47ff2b2ecb /backends/btor | |
parent | 5dc23975ebf0fc77726f7113171a3172bd4f75e6 (diff) | |
download | yosys-6834461f6513adfafedd24127860b4fde4600cef.tar.gz yosys-6834461f6513adfafedd24127860b4fde4600cef.tar.bz2 yosys-6834461f6513adfafedd24127860b4fde4600cef.zip |
Remove some very strange whitespace in btor.cc (by Larry Doolittle)
Diffstat (limited to 'backends/btor')
-rw-r--r-- | backends/btor/btor.cc | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/backends/btor/btor.cc b/backends/btor/btor.cc index cd0503148..6f02d3078 100644 --- a/backends/btor/btor.cc +++ b/backends/btor/btor.cc @@ -79,8 +79,8 @@ struct BtorDumper RTLIL::IdString curr_cell; //current cell being dumped std::map<std::string, std::string> cell_type_translation, s_cell_type_translation; //RTLIL to BTOR translation std::map<int, std::set<std::pair<int,int>>> mem_next; // memory (line_number)'s set of condition and write - BtorDumper(std::ostream &f, RTLIL::Module *module, RTLIL::Design *design, BtorDumperConfig *config) : - f(f), module(module), design(design), config(config), ct(design), sigmap(module) + BtorDumper(std::ostream &f, RTLIL::Module *module, RTLIL::Design *design, BtorDumperConfig *config) : + f(f), module(module), design(design), config(config), ct(design), sigmap(module) { line_num=0; str.clear(); @@ -520,7 +520,7 @@ struct BtorDumper bool l1_signed = cell->parameters.at(RTLIL::IdString("\\A_SIGNED")).as_bool(); bool l2_signed YS_ATTRIBUTE(unused) = cell->parameters.at(RTLIL::IdString("\\B_SIGNED")).as_bool(); int l1_width = cell->parameters.at(RTLIL::IdString("\\A_WIDTH")).as_int(); - int l2_width = cell->parameters.at(RTLIL::IdString("\\B_WIDTH")).as_int(); + int l2_width = cell->parameters.at(RTLIL::IdString("\\B_WIDTH")).as_int(); log_assert(l1_signed == l2_signed); l1_width = l1_width > output_width ? l1_width : output_width; @@ -554,7 +554,7 @@ struct BtorDumper bool l1_signed = cell->parameters.at(RTLIL::IdString("\\A_SIGNED")).as_bool(); bool l2_signed = cell->parameters.at(RTLIL::IdString("\\B_SIGNED")).as_bool(); int l1_width = cell->parameters.at(RTLIL::IdString("\\A_WIDTH")).as_int(); - int l2_width = cell->parameters.at(RTLIL::IdString("\\B_WIDTH")).as_int(); + int l2_width = cell->parameters.at(RTLIL::IdString("\\B_WIDTH")).as_int(); log_assert(l1_signed == l2_signed); l1_width = l1_width > output_width ? l1_width : output_width; @@ -594,7 +594,7 @@ struct BtorDumper //bool l2_signed = cell->parameters.at(RTLIL::IdString("\\B_SIGNED")).as_bool(); int l1_width = cell->parameters.at(RTLIL::IdString("\\A_WIDTH")).as_int(); l1_width = pow(2, ceil(log(l1_width)/log(2))); - int l2_width = cell->parameters.at(RTLIL::IdString("\\B_WIDTH")).as_int(); + int l2_width = cell->parameters.at(RTLIL::IdString("\\B_WIDTH")).as_int(); //log_assert(l2_width <= ceil(log(l1_width)/log(2)) ); int l1 = dump_sigspec(&cell->getPort(RTLIL::IdString("\\A")), l1_width); int l2 = dump_sigspec(&cell->getPort(RTLIL::IdString("\\B")), ceil(log(l1_width)/log(2))); @@ -641,7 +641,7 @@ struct BtorDumper int l1 = dump_sigspec(&cell->getPort(RTLIL::IdString("\\A")), output_width); int l2 = dump_sigspec(&cell->getPort(RTLIL::IdString("\\B")), output_width); int l1_width = cell->parameters.at(RTLIL::IdString("\\A_WIDTH")).as_int(); - int l2_width = cell->parameters.at(RTLIL::IdString("\\B_WIDTH")).as_int(); + int l2_width = cell->parameters.at(RTLIL::IdString("\\B_WIDTH")).as_int(); if(l1_width >1) { ++line_num; @@ -830,7 +830,7 @@ struct BtorDumper mem = line_num - 1; } */ - ++line_num; + ++line_num; if(polarity) str = stringf("%d one 1", line_num); else |