mirror of
https://github.com/YosysHQ/yosys
synced 2026-06-06 09:00:54 +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
|
||||
{
|
||||
log_assert(getWidth() == op.getWidth());
|
||||
if (is_signed)
|
||||
return bv{symfpu_mod->Sshr(NEW_ID, bits, op.bits, is_signed)};
|
||||
else
|
||||
return bv{symfpu_mod->Shr(NEW_ID, bits, op.bits, is_signed)};
|
||||
if (is_signed)
|
||||
return bv{symfpu_mod->Sshr(NEW_ID, bits, op.bits, is_signed)};
|
||||
else
|
||||
return bv{symfpu_mod->Shr(NEW_ID, bits, op.bits, is_signed)};
|
||||
}
|
||||
|
||||
prop operator!=(const bv<is_signed> &op) const
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue