diff options
author | rafaeltp <rafaeltp@soe.ucsc.edu> | 2018-10-20 18:02:59 -0700 |
---|---|---|
committer | rafaeltp <rafaeltp@soe.ucsc.edu> | 2018-10-20 18:02:59 -0700 |
commit | 7b964bfb83696ac66f31e560d8c0c475da2b5c10 (patch) | |
tree | dca9e5ab0d1270884b319cfeeb6bc464ba50c12e /kernel | |
parent | ce069830c5f53643ea9e5bd26c20d13034a164d1 (diff) | |
download | yosys-7b964bfb83696ac66f31e560d8c0c475da2b5c10.tar.gz yosys-7b964bfb83696ac66f31e560d8c0c475da2b5c10.tar.bz2 yosys-7b964bfb83696ac66f31e560d8c0c475da2b5c10.zip |
cleaning up for PR
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/rtlil.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/kernel/rtlil.h b/kernel/rtlil.h index 3323f13f0..276540aa1 100644 --- a/kernel/rtlil.h +++ b/kernel/rtlil.h @@ -1304,10 +1304,6 @@ inline const RTLIL::SigBit &RTLIL::SigSpecConstIterator::operator*() const { } inline RTLIL::SigBit::SigBit(const RTLIL::SigSpec &sig) { - if(sig.size() != 1 || sig.chunks().size() != 1) { - std::cout << "rtp " << sig.size() << std::endl; - std::cout << "rtp " << sig.chunks().size() << std::endl; - } log_assert(sig.size() == 1 && sig.chunks().size() == 1); *this = SigBit(sig.chunks().front()); } |