about summary refs log tree commit diff
diff options
context:
space:
mode:
authorThe Miri Cronjob Bot <miri@cron.bot>2025-07-01 05:07:00 +0000
committerThe Miri Cronjob Bot <miri@cron.bot>2025-07-01 05:07:00 +0000
commit8958967fd498ad2e4fbaf08085e6ba3872776089 (patch)
treef9b1d65029bae680aeee8b28cf45562660ea5fbc
parente6371c9379b63cb18aea2acb0c1b76e828150f0b (diff)
downloadrust-8958967fd498ad2e4fbaf08085e6ba3872776089.tar.gz
rust-8958967fd498ad2e4fbaf08085e6ba3872776089.zip
fmt
-rw-r--r--src/tools/miri/tests/pass/float.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/tools/miri/tests/pass/float.rs b/src/tools/miri/tests/pass/float.rs
index 0fec1fb15eb..fe7316c6680 100644
--- a/src/tools/miri/tests/pass/float.rs
+++ b/src/tools/miri/tests/pass/float.rs
@@ -1066,7 +1066,6 @@ pub fn libm() {
     assert_eq!((-1f32).powf(f32::NEG_INFINITY), 1.0);
     assert_eq!((-1f64).powf(f64::NEG_INFINITY), 1.0);
 
-
     assert_eq!(0f32.powi(10), 0.0);
     assert_eq!(0f64.powi(100), 0.0);
     assert_eq!(0f32.powi(9), 0.0);
@@ -1490,7 +1489,6 @@ fn test_non_determinism() {
     test_operations_f64(19., 11.);
     test_operations_f128(25., 18.);
 
-
     // SNaN^0 = (1 | NaN)
     ensure_nondet(|| f32::powf(SNAN_F32, 0.0).is_nan());
     ensure_nondet(|| f64::powf(SNAN_F64, 0.0).is_nan());