You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
lint_builtin_anonymous_params = anonymous parameters are deprecated and will be removed in the next edition
53
53
.suggestion = try naming the parameter or explicitly ignoring it
54
54
55
-
lint_builtin_asm_labels = avoid using named labels in inline assembly
56
-
.help = only local labels of the form `<number>:` should be used in inline asm
57
-
.note = see the asm section of Rust By Example <https://doc.rust-lang.org/nightly/rust-by-example/unsafe/asm.html#labels> for more information
58
-
59
55
lint_builtin_clashing_extern_diff_name = `{$this}` redeclares `{$orig}` with a different signature
60
56
.previous_decl_label = `{$orig}` previously declared here
61
57
.mismatch_label = this signature doesn't match the previous declaration
@@ -399,6 +395,19 @@ lint_incomplete_include =
399
395
400
396
lint_inner_macro_attribute_unstable = inner macro attributes are unstable
401
397
398
+
lint_invalid_asm_label_binary = avoid using labels containing only the digits `0` and `1` in inline assembly
399
+
.label = use a different label that doesn't start with `0` or `1`
400
+
.note = an LLVM bug makes these labels ambiguous with a binary literal number
401
+
.note = see <https://bugs.llvm.org/show_bug.cgi?id=36144> for more information
402
+
403
+
lint_invalid_asm_label_format_arg = avoid using named labels in inline assembly
404
+
.help = only local labels of the form `<number>:` should be used in inline asm
405
+
.note1 = format arguments may expand to a non-numeric value
406
+
.note2 = see the asm section of Rust By Example <https://doc.rust-lang.org/nightly/rust-by-example/unsafe/asm.html#labels> for more information
407
+
lint_invalid_asm_label_named = avoid using named labels in inline assembly
408
+
.help = only local labels of the form `<number>:` should be used in inline asm
409
+
.note = see the asm section of Rust By Example <https://doc.rust-lang.org/nightly/rust-by-example/unsafe/asm.html#labels> for more information
410
+
lint_invalid_asm_label_no_span = the label may be declared in the expansion of a macro
402
411
lint_invalid_crate_type_value = invalid `crate_type` value
0 commit comments