mirror of https://github.com/YosysHQ/yosys.git
symfpu: whitespace
This commit is contained in:
parent
63e8c5bb03
commit
bbb6841b91
|
|
@ -279,10 +279,10 @@ template <bool is_signed> struct bv {
|
||||||
bv<is_signed> operator>>(const bv<is_signed> &op) const
|
bv<is_signed> operator>>(const bv<is_signed> &op) const
|
||||||
{
|
{
|
||||||
log_assert(getWidth() == op.getWidth());
|
log_assert(getWidth() == op.getWidth());
|
||||||
if (is_signed)
|
if (is_signed)
|
||||||
return bv{symfpu_mod->Sshr(NEW_ID, bits, op.bits, is_signed)};
|
return bv{symfpu_mod->Sshr(NEW_ID, bits, op.bits, is_signed)};
|
||||||
else
|
else
|
||||||
return bv{symfpu_mod->Shr(NEW_ID, bits, op.bits, is_signed)};
|
return bv{symfpu_mod->Shr(NEW_ID, bits, op.bits, is_signed)};
|
||||||
}
|
}
|
||||||
|
|
||||||
prop operator!=(const bv<is_signed> &op) const
|
prop operator!=(const bv<is_signed> &op) const
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue