projects
/
yosys.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5798105
)
coolrunner2: Remove debug prints
author
Robert Ou
<rqou@robertou.com>
Sun, 25 Jun 2017 09:44:03 +0000
(
02:44
-0700)
committer
Robert Ou
<rqou@robertou.com>
Mon, 26 Jun 2017 06:58:28 +0000
(23:58 -0700)
techlibs/coolrunner2/coolrunner2_sop.cpp
patch
|
blob
|
history
diff --git
a/techlibs/coolrunner2/coolrunner2_sop.cpp
b/techlibs/coolrunner2/coolrunner2_sop.cpp
index 70d4aa870b3c16daf97f7130939897e58d61e83b..ed11880d5a09d1df58420e9e6f0a4d473b17b499 100644
(file)
--- a/
techlibs/coolrunner2/coolrunner2_sop.cpp
+++ b/
techlibs/coolrunner2/coolrunner2_sop.cpp
@@
-47,7
+47,6
@@
struct Coolrunner2SopPass : public Pass {
{
if (cell->type == "$_NOT_")
{
- log("found not cell %s\n", log_id(cell));
auto not_input = cell->getPort("\\A")[0];
auto not_output = cell->getPort("\\Y")[0];
not_cells[not_input] = {not_output, cell};
@@
-74,7
+73,6
@@
struct Coolrunner2SopPass : public Pass {
bool has_invert = false;
if (not_cells.count(sop_output))
{
- log("sop output is inverted %s\n", log_id(cell));
auto not_cell = not_cells.at(sop_output);
has_invert = true;