From: Robert Ou Date: Sun, 25 Jun 2017 09:44:03 +0000 (-0700) Subject: coolrunner2: Remove debug prints X-Git-Tag: yosys-0.8~402^2~4 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ffff00100858c5839fbf02e29b14bd7590493608;p=yosys.git coolrunner2: Remove debug prints --- 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;