Skip to content

Commit d60edea

Browse files
committed
Remove LLVM-style inline assembly from clippy
1 parent 064eda4 commit d60edea

11 files changed

+3
-29
lines changed

src/tools/clippy/clippy_lints/src/dereference.rs

-1
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,6 @@ fn is_linted_explicit_deref_position(parent: Option<Node<'_>>, child_id: HirId,
449449
| ExprKind::Continue(..)
450450
| ExprKind::Ret(..)
451451
| ExprKind::InlineAsm(..)
452-
| ExprKind::LlvmInlineAsm(..)
453452
| ExprKind::Struct(..)
454453
| ExprKind::Repeat(..)
455454
| ExprKind::Yield(..) => true,

src/tools/clippy/clippy_lints/src/entry.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -504,7 +504,7 @@ impl<'tcx> Visitor<'tcx> for InsertSearcher<'_, 'tcx> {
504504
self.loops.pop();
505505
},
506506
ExprKind::Block(block, _) => self.visit_block(block),
507-
ExprKind::InlineAsm(_) | ExprKind::LlvmInlineAsm(_) => {
507+
ExprKind::InlineAsm(_) => {
508508
self.can_use_entry = false;
509509
},
510510
_ => {

src/tools/clippy/clippy_lints/src/loops/never_loop.rs

-1
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,6 @@ fn never_loop_expr(expr: &Expr<'_>, main_loop_id: HirId) -> NeverLoopResult {
181181
ExprKind::Struct(_, _, None)
182182
| ExprKind::Yield(_, _)
183183
| ExprKind::Closure(_, _, _, _, _)
184-
| ExprKind::LlvmInlineAsm(_)
185184
| ExprKind::Path(_)
186185
| ExprKind::ConstBlock(_)
187186
| ExprKind::Lit(_)

src/tools/clippy/clippy_lints/src/suspicious_operation_groupings.rs

-1
Original file line numberDiff line numberDiff line change
@@ -567,7 +567,6 @@ fn ident_difference_expr_with_base_location(
567567
| (Repeat(_, _), Repeat(_, _))
568568
| (Struct(_), Struct(_))
569569
| (MacCall(_), MacCall(_))
570-
| (LlvmInlineAsm(_), LlvmInlineAsm(_))
571570
| (InlineAsm(_), InlineAsm(_))
572571
| (Ret(_), Ret(_))
573572
| (Continue(_), Continue(_))

src/tools/clippy/clippy_lints/src/utils/author.rs

-4
Original file line numberDiff line numberDiff line change
@@ -547,10 +547,6 @@ impl<'a, 'tcx> PrintVisitor<'a, 'tcx> {
547547
kind!("InlineAsm(_)");
548548
out!("// unimplemented: `ExprKind::InlineAsm` is not further destructured at the moment");
549549
},
550-
ExprKind::LlvmInlineAsm(_) => {
551-
kind!("LlvmInlineAsm(_)");
552-
out!("// unimplemented: `ExprKind::LlvmInlineAsm` is not further destructured at the moment");
553-
},
554550
ExprKind::Struct(qpath, fields, base) => {
555551
bind!(self, qpath, fields);
556552
opt_bind!(self, base);

src/tools/clippy/clippy_lints/src/utils/inspector.rs

-13
Original file line numberDiff line numberDiff line change
@@ -304,19 +304,6 @@ fn print_expr(cx: &LateContext<'_>, expr: &hir::Expr<'_>, indent: usize) {
304304
}
305305
}
306306
},
307-
hir::ExprKind::LlvmInlineAsm(asm) => {
308-
let inputs = &asm.inputs_exprs;
309-
let outputs = &asm.outputs_exprs;
310-
println!("{}LlvmInlineAsm", ind);
311-
println!("{}inputs:", ind);
312-
for e in inputs.iter() {
313-
print_expr(cx, e, indent + 1);
314-
}
315-
println!("{}outputs:", ind);
316-
for e in outputs.iter() {
317-
print_expr(cx, e, indent + 1);
318-
}
319-
},
320307
hir::ExprKind::Struct(path, fields, ref base) => {
321308
println!("{}Struct", ind);
322309
println!("{}path: {:?}", ind, path);

src/tools/clippy/clippy_utils/src/eager_or_lazy.rs

-1
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,6 @@ fn expr_eagerness(cx: &LateContext<'tcx>, e: &'tcx Expr<'_>) -> EagernessSuggest
175175
| ExprKind::Continue(_)
176176
| ExprKind::Ret(_)
177177
| ExprKind::InlineAsm(_)
178-
| ExprKind::LlvmInlineAsm(_)
179178
| ExprKind::Yield(..)
180179
| ExprKind::Err => {
181180
self.eagerness = ForceNoChange;

src/tools/clippy/clippy_utils/src/hir_utils.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -685,7 +685,7 @@ impl<'a, 'tcx> SpanlessHash<'a, 'tcx> {
685685
}
686686
self.hash_pat(pat);
687687
},
688-
ExprKind::LlvmInlineAsm(..) | ExprKind::Err => {},
688+
ExprKind::Err => {},
689689
ExprKind::Lit(ref l) => {
690690
l.node.hash(&mut self.s);
691691
},

src/tools/clippy/clippy_utils/src/lib.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -777,8 +777,7 @@ pub fn can_move_expr_to_closure_no_visit(
777777
| ExprKind::Continue(_)
778778
| ExprKind::Ret(_)
779779
| ExprKind::Yield(..)
780-
| ExprKind::InlineAsm(_)
781-
| ExprKind::LlvmInlineAsm(_) => false,
780+
| ExprKind::InlineAsm(_) => false,
782781
// Accessing a field of a local value can only be done if the type isn't
783782
// partially moved.
784783
ExprKind::Field(

src/tools/clippy/clippy_utils/src/qualify_min_const_fn.rs

-2
Original file line numberDiff line numberDiff line change
@@ -222,8 +222,6 @@ fn check_statement(tcx: TyCtxt<'tcx>, body: &Body<'tcx>, def_id: DefId, statemen
222222
// just an assignment
223223
StatementKind::SetDiscriminant { place, .. } => check_place(tcx, **place, span, body),
224224

225-
StatementKind::LlvmInlineAsm { .. } => Err((span, "cannot use inline assembly in const fn".into())),
226-
227225
StatementKind::CopyNonOverlapping(box rustc_middle::mir::CopyNonOverlapping { dst, src, count }) => {
228226
check_operand(tcx, dst, span, body)?;
229227
check_operand(tcx, src, span, body)?;

src/tools/clippy/clippy_utils/src/sugg.rs

-2
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,6 @@ impl<'a> Sugg<'a> {
147147
| hir::ExprKind::Field(..)
148148
| hir::ExprKind::Index(..)
149149
| hir::ExprKind::InlineAsm(..)
150-
| hir::ExprKind::LlvmInlineAsm(..)
151150
| hir::ExprKind::ConstBlock(..)
152151
| hir::ExprKind::Lit(..)
153152
| hir::ExprKind::Loop(..)
@@ -205,7 +204,6 @@ impl<'a> Sugg<'a> {
205204
| ast::ExprKind::ForLoop(..)
206205
| ast::ExprKind::Index(..)
207206
| ast::ExprKind::InlineAsm(..)
208-
| ast::ExprKind::LlvmInlineAsm(..)
209207
| ast::ExprKind::ConstBlock(..)
210208
| ast::ExprKind::Lit(..)
211209
| ast::ExprKind::Loop(..)

0 commit comments

Comments
 (0)