@@ -176,8 +176,6 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry) {
176
176
reg. register_late_lint_pass ( box types:: TypePass ) ;
177
177
reg. register_late_lint_pass ( box booleans:: NonminimalBool ) ;
178
178
reg. register_early_lint_pass ( box module_inception:: Pass ) ;
179
- reg. register_late_lint_pass ( box misc:: TopLevelRefPass ) ;
180
- reg. register_late_lint_pass ( box misc:: CmpNan ) ;
181
179
reg. register_late_lint_pass ( box eq_op:: EqOp ) ;
182
180
reg. register_early_lint_pass ( box enum_variants:: EnumVariantNames :: new ( conf. enum_variant_name_threshold ) ) ;
183
181
reg. register_late_lint_pass ( box enum_glob_use:: EnumGlobUse ) ;
@@ -187,19 +185,17 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry) {
187
185
reg. register_late_lint_pass ( box needless_bool:: NeedlessBool ) ;
188
186
reg. register_late_lint_pass ( box needless_bool:: BoolComparison ) ;
189
187
reg. register_late_lint_pass ( box approx_const:: Pass ) ;
190
- reg. register_late_lint_pass ( box misc:: FloatCmp ) ;
188
+ reg. register_late_lint_pass ( box misc:: Pass ) ;
191
189
reg. register_early_lint_pass ( box precedence:: Precedence ) ;
192
190
reg. register_late_lint_pass ( box eta_reduction:: EtaPass ) ;
193
191
reg. register_late_lint_pass ( box identity_op:: IdentityOp ) ;
194
192
reg. register_early_lint_pass ( box items_after_statements:: ItemsAfterStatements ) ;
195
193
reg. register_late_lint_pass ( box mut_mut:: MutMut ) ;
196
194
reg. register_late_lint_pass ( box mut_reference:: UnnecessaryMutPassed ) ;
197
195
reg. register_late_lint_pass ( box len_zero:: LenZero ) ;
198
- reg. register_late_lint_pass ( box misc:: CmpOwned ) ;
199
196
reg. register_late_lint_pass ( box attrs:: AttrPass ) ;
200
197
reg. register_early_lint_pass ( box collapsible_if:: CollapsibleIf ) ;
201
198
reg. register_late_lint_pass ( box block_in_if_condition:: BlockInIfCondition ) ;
202
- reg. register_late_lint_pass ( box misc:: ModuloOne ) ;
203
199
reg. register_late_lint_pass ( box unicode:: Unicode ) ;
204
200
reg. register_late_lint_pass ( box strings:: StringAdd ) ;
205
201
reg. register_early_lint_pass ( box returns:: ReturnPass ) ;
@@ -214,7 +210,6 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry) {
214
210
reg. register_late_lint_pass ( box types:: CastPass ) ;
215
211
reg. register_late_lint_pass ( box types:: TypeComplexityPass :: new ( conf. type_complexity_threshold ) ) ;
216
212
reg. register_late_lint_pass ( box matches:: MatchPass ) ;
217
- reg. register_late_lint_pass ( box misc:: PatternPass ) ;
218
213
reg. register_late_lint_pass ( box minmax:: MinMaxPass ) ;
219
214
reg. register_late_lint_pass ( box open_options:: NonSensical ) ;
220
215
reg. register_late_lint_pass ( box zero_div_zero:: Pass ) ;
@@ -228,7 +223,6 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry) {
228
223
reg. register_late_lint_pass ( box cyclomatic_complexity:: CyclomaticComplexity :: new ( conf. cyclomatic_complexity_threshold ) ) ;
229
224
reg. register_late_lint_pass ( box escape:: Pass { too_large_for_stack : conf. too_large_for_stack } ) ;
230
225
reg. register_early_lint_pass ( box misc_early:: MiscEarly ) ;
231
- reg. register_late_lint_pass ( box misc:: UsedUnderscoreBinding ) ;
232
226
reg. register_late_lint_pass ( box array_indexing:: ArrayIndexing ) ;
233
227
reg. register_late_lint_pass ( box panic:: Pass ) ;
234
228
reg. register_late_lint_pass ( box strings:: StringLitAsBytes ) ;
0 commit comments