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.
2 parents 3719abb + e388261 commit fc8631bCopy full SHA for fc8631b
src/lib.rs
@@ -184,7 +184,7 @@ impl CodegenBackend for CraneliftCodegenBackend {
184
// FIXME return the actually used target features. this is necessary for #[cfg(target_feature)]
185
let target_features = if sess.target.arch == "x86_64" && sess.target.os != "none" {
186
// x86_64 mandates SSE2 support and rustc requires the x87 feature to be enabled
187
- vec![sym::fsxr, sym::sse, sym::sse2, Symbol::intern("x87")]
+ vec![sym::fxsr, sym::sse, sym::sse2, Symbol::intern("x87")]
188
} else if sess.target.arch == "aarch64" {
189
match &*sess.target.os {
190
"none" => vec![],
0 commit comments