We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
_fltused
uefi
1 parent 9823b95 commit 7a8161dCopy full SHA for 7a8161d
src/x86_64.rs
@@ -73,3 +73,10 @@ pub unsafe fn ___chkstk() {
73
);
74
intrinsics::unreachable();
75
}
76
+
77
+// HACK(https://github.com/rust-lang/rust/issues/62785): x86_64-unknown-uefi needs special LLVM
78
+// support unless we emit the _fltused
79
+#[no_mangle]
80
+#[used]
81
+#[cfg(target_os = "uefi")]
82
+static _fltused: i32 = 0;
0 commit comments