Skip to content

Commit 1c42cb4

Browse files
committedApr 26, 2023
Auto merge of #110852 - matthiaskrgr:rollup-jz3eosr, r=matthiaskrgr
Rollup of 10 pull requests Successful merges: - #108760 (Add lint to deny diagnostics composed of static strings) - #109444 (Change tidy error message for TODOs) - #110419 (Spelling library) - #110550 (Suggest deref on comparison binop RHS even if type is not Copy) - #110641 (Add new rustdoc book chapter to describe in-doc settings) - #110798 (pass `unused_extern_crates` in `librustdoc::doctest::make_test`) - #110819 (simplify TrustedLen impls) - #110825 (diagnostics: add test case for already-solved issue) - #110835 (Make some region folders a little stricter.) - #110847 (rustdoc-json: Time serialization.) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
2 parents 9c044d7 + 63bccce commit 1c42cb4

File tree

85 files changed

+833
-329
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

85 files changed

+833
-329
lines changed
 

‎compiler/rustc_builtin_macros/messages.ftl

+19
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,25 @@ builtin_macros_format_pos_mismatch = {$n} positional {$n ->
149149
[one] argument
150150
*[more] arguments
151151
} in format string, but {$desc}
152+
152153
builtin_macros_offset_of_expected_field = expected field
153154
154155
builtin_macros_offset_of_expected_two_args = expected 2 arguments
156+
157+
builtin_macros_test_case_non_item = `#[test_case]` attribute is only allowed on items
158+
159+
builtin_macros_test_bad_fn = {$kind} functions cannot be used for tests
160+
.label = `{$kind}` because of this
161+
162+
builtin_macros_asm_explicit_register_name = explicit register arguments cannot have names
163+
164+
builtin_macros_asm_mutually_exclusive = the `{$opt1}` and `{$opt2}` options are mutually exclusive
165+
166+
builtin_macros_asm_pure_combine = the `pure` option must be combined with either `nomem` or `readonly`
167+
168+
builtin_macros_asm_pure_no_output = asm with the `pure` option must have at least one output
169+
170+
builtin_macros_asm_modifier_invalid = asm template modifier must be a single character
171+
172+
builtin_macros_test_runner_invalid = `test_runner` argument must be a path
173+
builtin_macros_test_runner_nargs = `#![test_runner(..)]` accepts exactly 1 argument

‎compiler/rustc_builtin_macros/src/asm.rs

+8-20
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ use rustc_span::{InnerSpan, Span};
1515
use rustc_target::asm::InlineAsmArch;
1616
use smallvec::smallvec;
1717

18+
use crate::errors;
19+
1820
pub struct AsmArgs {
1921
pub templates: Vec<P<ast::Expr>>,
2022
pub operands: Vec<(ast::InlineAsmOperand, Span)>,
@@ -205,7 +207,7 @@ pub fn parse_asm_args<'a>(
205207
// of the argument available.
206208
if explicit_reg {
207209
if name.is_some() {
208-
diag.struct_span_err(span, "explicit register arguments cannot have names").emit();
210+
diag.emit_err(errors::AsmExplicitRegisterName { span });
209211
}
210212
args.reg_args.insert(slot);
211213
} else if let Some(name) = name {
@@ -240,25 +242,19 @@ pub fn parse_asm_args<'a>(
240242
&& args.options.contains(ast::InlineAsmOptions::READONLY)
241243
{
242244
let spans = args.options_spans.clone();
243-
diag.struct_span_err(spans, "the `nomem` and `readonly` options are mutually exclusive")
244-
.emit();
245+
diag.emit_err(errors::AsmMutuallyExclusive { spans, opt1: "nomem", opt2: "readonly" });
245246
}
246247
if args.options.contains(ast::InlineAsmOptions::PURE)
247248
&& args.options.contains(ast::InlineAsmOptions::NORETURN)
248249
{
249250
let spans = args.options_spans.clone();
250-
diag.struct_span_err(spans, "the `pure` and `noreturn` options are mutually exclusive")
251-
.emit();
251+
diag.emit_err(errors::AsmMutuallyExclusive { spans, opt1: "pure", opt2: "noreturn" });
252252
}
253253
if args.options.contains(ast::InlineAsmOptions::PURE)
254254
&& !args.options.intersects(ast::InlineAsmOptions::NOMEM | ast::InlineAsmOptions::READONLY)
255255
{
256256
let spans = args.options_spans.clone();
257-
diag.struct_span_err(
258-
spans,
259-
"the `pure` option must be combined with either `nomem` or `readonly`",
260-
)
261-
.emit();
257+
diag.emit_err(errors::AsmPureCombine { spans });
262258
}
263259

264260
let mut have_real_output = false;
@@ -285,11 +281,7 @@ pub fn parse_asm_args<'a>(
285281
}
286282
}
287283
if args.options.contains(ast::InlineAsmOptions::PURE) && !have_real_output {
288-
diag.struct_span_err(
289-
args.options_spans.clone(),
290-
"asm with the `pure` option must have at least one output",
291-
)
292-
.emit();
284+
diag.emit_err(errors::AsmPureNoOutput { spans: args.options_spans.clone() });
293285
}
294286
if args.options.contains(ast::InlineAsmOptions::NORETURN) && !outputs_sp.is_empty() {
295287
let err = diag
@@ -705,11 +697,7 @@ fn expand_preparsed_asm(ecx: &mut ExtCtxt<'_>, args: AsmArgs) -> Option<ast::Inl
705697
.ty_span
706698
.map(|sp| template_sp.from_inner(InnerSpan::new(sp.start, sp.end)))
707699
.unwrap_or(template_sp);
708-
ecx.struct_span_err(
709-
span,
710-
"asm template modifier must be a single character",
711-
)
712-
.emit();
700+
ecx.emit_err(errors::AsmModifierInvalid { span });
713701
modifier = None;
714702
}
715703

0 commit comments

Comments
 (0)
Please sign in to comment.