aboutsummaryrefslogtreecommitdiffstats
path: root/techlibs/coolrunner2/coolrunner2_sop.cpp
diff options
context:
space:
mode:
authorRobert Ou <rqou@robertou.com>2017-06-25 02:44:03 -0700
committerRobert Ou <rqou@robertou.com>2017-06-25 23:58:28 -0700
commitffff00100858c5839fbf02e29b14bd7590493608 (patch)
treef61de079e7dcae72620598c3f9af7942c8a9e803 /techlibs/coolrunner2/coolrunner2_sop.cpp
parent5798105d47cdcdaf4e305ef9dbd5b6c93fef35b1 (diff)
downloadyosys-ffff00100858c5839fbf02e29b14bd7590493608.tar.gz
yosys-ffff00100858c5839fbf02e29b14bd7590493608.tar.bz2
yosys-ffff00100858c5839fbf02e29b14bd7590493608.zip
coolrunner2: Remove debug prints
Diffstat (limited to 'techlibs/coolrunner2/coolrunner2_sop.cpp')
-rw-r--r--techlibs/coolrunner2/coolrunner2_sop.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/techlibs/coolrunner2/coolrunner2_sop.cpp b/techlibs/coolrunner2/coolrunner2_sop.cpp
index 70d4aa870..ed11880d5 100644
--- 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;