summary refs log tree commit diff
path: root/tests/ui/consts/const-eval/float_methods.rs
AgeCommit message (Collapse)AuthorLines
2024-11-23Stabilize `const_float_methods`Eduardo Sánchez Muñoz-1/+0
2024-10-15Make some float methods unstable `const fn`Eduardo Sánchez Muñoz-0/+47
Some float methods are now `const fn` under the `const_float_methods` feature gate. In order to support `min`, `max`, `abs` and `copysign`, the implementation of some intrinsics had to be moved from Miri to rustc_const_eval.