projects
/
yosys.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fc6dc0d
)
Removed debug log from const_pow()
author
Clifford Wolf
<clifford@clifford.at>
Fri, 8 Nov 2013 03:43:38 +0000
(
04:43
+0100)
committer
Clifford Wolf
<clifford@clifford.at>
Fri, 8 Nov 2013 03:43:38 +0000
(
04:43
+0100)
kernel/calc.cc
patch
|
blob
|
history
diff --git
a/kernel/calc.cc
b/kernel/calc.cc
index 61a75c79f29d0dced90f00753b6227efa6f6d1e6..68a382cc8e9cdf79a89ea9d6fe5f66819249b57e 100644
(file)
--- 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;