3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-06-06 17:11:01 +00:00

symfpu: whitespace

This commit is contained in:
Krystine Sherwin 2026-06-06 10:04:43 +12:00
parent 63e8c5bb03
commit bbb6841b91
No known key found for this signature in database

View file

@ -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