Skip to content

Commit 1299aef

Browse files
committedJun 19, 2024·
Make pretty printing for f16 and f128 consistent
Currently the docs show e.g. {transmute(0xfffeffffffffffffffffffffffffffff): f128} for f128 constants. This should fix that to instead use apfloat for printing, as is done for `f32` and `f64`.
1 parent 8fcd4dd commit 1299aef

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed
 

‎compiler/rustc_middle/src/ty/print/pretty.rs

+9-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use crate::ty::{
77
ConstInt, Expr, ParamConst, ScalarInt, Term, TermKind, TypeFoldable, TypeSuperFoldable,
88
TypeSuperVisitable, TypeVisitable, TypeVisitableExt,
99
};
10-
use rustc_apfloat::ieee::{Double, Single};
10+
use rustc_apfloat::ieee::{Double, Half, Quad, Single};
1111
use rustc_apfloat::Float;
1212
use rustc_data_structures::fx::{FxHashMap, FxIndexMap};
1313
use rustc_data_structures::unord::UnordMap;
@@ -1710,6 +1710,10 @@ pub trait PrettyPrinter<'tcx>: Printer<'tcx> + fmt::Write {
17101710
ty::Bool if int == ScalarInt::FALSE => p!("false"),
17111711
ty::Bool if int == ScalarInt::TRUE => p!("true"),
17121712
// Float
1713+
ty::Float(ty::FloatTy::F16) => {
1714+
let val = Half::try_from(int).unwrap();
1715+
p!(write("{}{}f16", val, if val.is_finite() { "" } else { "_" }))
1716+
}
17131717
ty::Float(ty::FloatTy::F32) => {
17141718
let val = Single::try_from(int).unwrap();
17151719
p!(write("{}{}f32", val, if val.is_finite() { "" } else { "_" }))
@@ -1718,6 +1722,10 @@ pub trait PrettyPrinter<'tcx>: Printer<'tcx> + fmt::Write {
17181722
let val = Double::try_from(int).unwrap();
17191723
p!(write("{}{}f64", val, if val.is_finite() { "" } else { "_" }))
17201724
}
1725+
ty::Float(ty::FloatTy::F128) => {
1726+
let val = Quad::try_from(int).unwrap();
1727+
p!(write("{}{}f128", val, if val.is_finite() { "" } else { "_" }))
1728+
}
17211729
// Int
17221730
ty::Uint(_) | ty::Int(_) => {
17231731
let int =

0 commit comments

Comments
 (0)
Please sign in to comment.