From: Clifford Wolf Date: Fri, 8 Nov 2013 03:43:38 +0000 (+0100) Subject: Removed debug log from const_pow() X-Git-Tag: yosys-0.2.0~382 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=81b8f3292e997cc2fda5f3da63cbca2707936c35;p=yosys.git Removed debug log from const_pow() --- diff --git a/kernel/calc.cc b/kernel/calc.cc index 61a75c79f..68a382cc8 100644 --- a/kernel/calc.cc +++ b/kernel/calc.cc @@ -454,7 +454,6 @@ RTLIL::Const RTLIL::const_pow(const RTLIL::Const &arg1, const RTLIL::Const &arg2 { int undef_bit_pos = -1; - log("--POW--\n"); BigInteger a = const2big(arg1, signed1, undef_bit_pos); BigInteger b = const2big(arg2, signed2, undef_bit_pos); BigInteger y = 1;