We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1047a7c + e608520 commit 633ecc8Copy full SHA for 633ecc8
src/attributes.rs
@@ -88,14 +88,8 @@ pub fn from_fn_attrs<'gcc, 'tcx>(
88
let target_features = function_features
89
.iter()
90
.filter_map(|feature| {
91
- // FIXME(antoyo): for some reasons, disabling SSE results in the following error when
92
- // compiling Rust for Linux:
93
- // SSE register return with SSE disabled
94
- // TODO(antoyo): support soft-float and retpoline-external-thunk.
95
- if feature.contains("soft-float")
96
- || feature.contains("retpoline-external-thunk")
97
- || *feature == "-sse"
98
- {
+ // TODO(antoyo): support soft-float.
+ if feature.contains("soft-float") {
99
return None;
100
}
101
0 commit comments