File tree 1 file changed +1
-3
lines changed
1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -184,13 +184,11 @@ impl CodegenBackend for CraneliftCodegenBackend {
184
184
// rustdoc needs to be able to document functions that use all the features, so
185
185
// whitelist them all
186
186
target_features_whitelist:: all_known_features ( )
187
- . chain ( Some ( ( "cg_clif" , None ) ) )
188
187
. map ( |( a, b) | ( a. to_string ( ) , b) )
189
188
. collect ( )
190
189
} else {
191
190
target_features_whitelist:: target_feature_whitelist ( tcx. sess )
192
191
. iter ( )
193
- . chain ( & Some ( ( "cg_clif" , None ) ) )
194
192
. map ( |& ( a, b) | ( a. to_string ( ) , b) )
195
193
. collect ( )
196
194
}
@@ -199,7 +197,7 @@ impl CodegenBackend for CraneliftCodegenBackend {
199
197
fn provide_extern ( & self , _providers : & mut Providers ) { }
200
198
201
199
fn target_features ( & self , _sess : & Session ) -> Vec < rustc_span:: Symbol > {
202
- vec ! [ rustc_span :: Symbol :: intern ( "cg_clif" ) ]
200
+ vec ! [ ]
203
201
}
204
202
205
203
fn codegen_crate < ' tcx > (
You can’t perform that action at this time.
0 commit comments