diff options
author | Clifford Wolf <clifford@clifford.at> | 2013-11-08 04:43:38 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2013-11-08 04:43:38 +0100 |
commit | 81b8f3292e997cc2fda5f3da63cbca2707936c35 (patch) | |
tree | a001931978a1be3d07b10fbde83c29a1c8af3f72 /kernel | |
parent | fc6dc0d7b8d3580df50558473c5d6365fd303191 (diff) | |
download | yosys-81b8f3292e997cc2fda5f3da63cbca2707936c35.tar.gz yosys-81b8f3292e997cc2fda5f3da63cbca2707936c35.tar.bz2 yosys-81b8f3292e997cc2fda5f3da63cbca2707936c35.zip |
Removed debug log from const_pow()
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/calc.cc | 1 |
1 files changed, 0 insertions, 1 deletions
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; |