mirror of
https://github.com/YosysHQ/yosys
synced 2026-06-06 17:11:01 +00:00
symfpu: whitespace
This commit is contained in:
parent
63e8c5bb03
commit
bbb6841b91
1 changed files with 4 additions and 4 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue