symfpu: whitespace

This commit is contained in:
Krystine Sherwin 2026-07-15 14:50:33 +12:00
parent e6bd07a49a
commit c3043b1ce5
No known key found for this signature in database
1 changed files with 4 additions and 4 deletions

View File

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