verrou
verrou copied to clipboard
Dealing with a verrou-unstable compiler intrinsic
I just discovered that the way the Rust compiler performs u64 -> f64 conversions is not stable under verrou's cool new --rounding-mode=float if the sub operation is being instrumented. Fair enough, I wouldn't really expect a cast to survive unexpected rounding occurring in the middle. The problem is that since casts are compiler intrinsics, they do not have associated symbols, so it does not seem to be possible to roll an exclude rule for them. What would you do in this kind of cases?