Skip to content

Commit

Permalink
todo -> unimplemented for f8 since we probably won't implement anything
Browse files Browse the repository at this point in the history
  • Loading branch information
tgross35 committed Nov 3, 2024
1 parent 82de0be commit 86fe390
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions crates/libm-test/src/f8_impl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,15 +63,15 @@ impl Float for f8 {
}

fn exp(self) -> Self::ExpInt {
todo!()
unimplemented!()
}

fn from_bits(a: Self::Int) -> Self {
Self(a)
}

fn normalize(_significand: Self::Int) -> (i32, Self::Int) {
todo!()
unimplemented!()
}
}

Expand Down Expand Up @@ -357,26 +357,26 @@ impl f8 {
impl ops::Add for f8 {
type Output = Self;
fn add(self, _rhs: Self) -> Self::Output {
todo!()
unimplemented!()
}
}

impl ops::Sub for f8 {
type Output = Self;
fn sub(self, _rhs: Self) -> Self::Output {
todo!()
unimplemented!()
}
}
impl ops::Mul for f8 {
type Output = Self;
fn mul(self, _rhs: Self) -> Self::Output {
todo!()
unimplemented!()
}
}
impl ops::Div for f8 {
type Output = Self;
fn div(self, _rhs: Self) -> Self::Output {
todo!()
unimplemented!()
}
}

Expand All @@ -390,25 +390,25 @@ impl ops::Neg for f8 {
impl ops::Rem for f8 {
type Output = Self;
fn rem(self, _rhs: Self) -> Self::Output {
todo!()
unimplemented!()
}
}

impl ops::AddAssign for f8 {
fn add_assign(&mut self, _rhs: Self) {
todo!()
unimplemented!()
}
}

impl ops::SubAssign for f8 {
fn sub_assign(&mut self, _rhs: Self) {
todo!()
unimplemented!()
}
}

impl ops::MulAssign for f8 {
fn mul_assign(&mut self, _rhs: Self) {
todo!()
unimplemented!()
}
}

Expand Down Expand Up @@ -459,7 +459,7 @@ impl cmp::PartialOrd for f8 {
}
impl fmt::Display for f8 {
fn fmt(&self, _f: &mut fmt::Formatter<'_>) -> fmt::Result {
todo!()
unimplemented!()
}
}

Expand Down

0 comments on commit 86fe390

Please sign in to comment.