Skip to content

Commit

Permalink
Disable without sys
Browse files Browse the repository at this point in the history
  • Loading branch information
tgross35 committed Aug 19, 2024
1 parent e5407f7 commit 61980c6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions testcrate/tests/float_pow.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,14 @@ pow! {
}

#[cfg(f128_enabled)]
#[cfg(not(feature = "no-sys-f128"))]
#[cfg(not(any(target_arch = "powerpc", target_arch = "powerpc64")))]
pow! {
f128, 1e-36, __powitf2;
}

#[cfg(f128_enabled)]
#[cfg(not(feature = "no-sys-f128"))]
#[cfg(any(target_arch = "powerpc", target_arch = "powerpc64"))]
pow! {
f128, 1e-36, __powikf2;
Expand Down

0 comments on commit 61980c6

Please sign in to comment.