You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let path = obj_out.to_str().expect("path to str");
188
192
189
193
let lto_path = format!("{}.lto", path);
194
+
//eprintln!("Before Executable");
195
+
// FIXME: The LTO frontend generates the following warning:
196
+
// ../build_sysroot/sysroot_src/library/core/src/num/dec2flt/lemire.rs:150:15: warning: type of ‘_ZN4core3num7dec2flt5table17POWER_OF_FIVE_12817ha449a68fb31379e4E’ does not match original declaration [-Wlto-type-mismatch]
197
+
// 150 | let (lo5, hi5) = POWER_OF_FIVE_128[index];
198
+
// | ^
199
+
// lto1: note: ‘_ZN4core3num7dec2flt5table17POWER_OF_FIVE_12817ha449a68fb31379e4E’ was previously declared here
200
+
//
201
+
// This option is to mute it to make the UI tests pass with LTO enabled.
0 commit comments