rust/tests/ui/asm/aarch64/parse-error.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

447 lines
15 KiB
Plaintext
Raw Normal View History

2020-02-20 03:19:48 -06:00
error: requires at least a template string argument
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:11:9
2020-02-20 03:19:48 -06:00
|
LL | asm!();
2021-10-14 13:28:28 -05:00
| ^^^^^^
2020-02-20 03:19:48 -06:00
error: asm template must be a string literal
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:13:14
2020-02-20 03:19:48 -06:00
|
LL | asm!(foo);
| ^^^
error: expected token: `,`
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:15:19
2020-02-20 03:19:48 -06:00
|
LL | asm!("{}" foo);
| ^^^ expected `,`
2021-07-29 06:43:26 -05:00
error: expected operand, clobber_abi, options, or additional template string
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:17:20
2020-02-20 03:19:48 -06:00
|
LL | asm!("{}", foo);
2021-07-29 06:43:26 -05:00
| ^^^ expected operand, clobber_abi, options, or additional template string
2020-02-20 03:19:48 -06:00
error: expected `(`, found `foo`
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:19:23
2020-02-20 03:19:48 -06:00
|
LL | asm!("{}", in foo);
| ^^^ expected `(`
error: expected `)`, found `foo`
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:21:27
2020-02-20 03:19:48 -06:00
|
LL | asm!("{}", in(reg foo));
| ^^^ expected `)`
error: expected expression, found end of macro arguments
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:23:27
2020-02-20 03:19:48 -06:00
|
LL | asm!("{}", in(reg));
| ^ expected expression
error: expected register class or explicit register
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:25:26
2020-02-20 03:19:48 -06:00
|
LL | asm!("{}", inout(=) foo => bar);
| ^
error: expected expression, found end of macro arguments
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:27:37
2020-02-20 03:19:48 -06:00
|
LL | asm!("{}", inout(reg) foo =>);
| ^ expected expression
error: expected one of `!`, `,`, `.`, `::`, `?`, `{`, or an operator, found `=>`
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:29:32
2020-02-20 03:19:48 -06:00
|
LL | asm!("{}", in(reg) foo => bar);
| ^^ expected one of 7 possible tokens
error: expected a path for argument to `sym`
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:31:24
2020-02-20 03:19:48 -06:00
|
LL | asm!("{}", sym foo + bar);
| ^^^^^^^^^
error: expected one of `)`, `att_syntax`, `may_unwind`, `nomem`, `noreturn`, `nostack`, `preserves_flags`, `pure`, `raw`, or `readonly`, found `foo`
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:33:26
2020-02-20 03:19:48 -06:00
|
LL | asm!("", options(foo));
| ^^^ expected one of 10 possible tokens
2020-02-20 03:19:48 -06:00
error: expected one of `)` or `,`, found `foo`
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:35:32
2020-02-20 03:19:48 -06:00
|
LL | asm!("", options(nomem foo));
| ^^^ expected one of `)` or `,`
error: expected one of `)`, `att_syntax`, `may_unwind`, `nomem`, `noreturn`, `nostack`, `preserves_flags`, `pure`, `raw`, or `readonly`, found `foo`
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:37:33
2020-02-20 03:19:48 -06:00
|
LL | asm!("", options(nomem, foo));
| ^^^ expected one of 10 possible tokens
2020-02-20 03:19:48 -06:00
error: arguments are not allowed after options
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:39:31
2020-02-20 03:19:48 -06:00
|
LL | asm!("{}", options(), const foo);
| --------- ^^^^^^^^^ argument
| |
| previous options
2021-07-29 06:43:26 -05:00
error: expected string literal
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:42:30
2021-07-29 06:43:26 -05:00
|
LL | asm!("", clobber_abi(foo));
| ^^^ not a string literal
2021-10-17 02:30:24 -05:00
error: expected one of `)` or `,`, found `foo`
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:44:34
2021-07-29 06:43:26 -05:00
|
LL | asm!("", clobber_abi("C" foo));
2021-10-17 02:30:24 -05:00
| ^^^ expected one of `)` or `,`
2021-07-29 06:43:26 -05:00
2021-10-17 02:30:24 -05:00
error: expected string literal
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:46:35
2021-07-29 06:43:26 -05:00
|
LL | asm!("", clobber_abi("C", foo));
2021-10-17 02:30:24 -05:00
| ^^^ not a string literal
2021-07-29 06:43:26 -05:00
error: arguments are not allowed after clobber_abi
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:48:38
2021-07-29 06:43:26 -05:00
|
LL | asm!("{}", clobber_abi("C"), const foo);
| ---------------- ^^^^^^^^^ argument
| |
| clobber_abi
error: clobber_abi is not allowed after options
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:51:29
2021-07-29 06:43:26 -05:00
|
LL | asm!("", options(), clobber_abi("C"));
| --------- ^^^^^^^^^^^^^^^^
| |
| options
error: clobber_abi is not allowed after options
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:53:31
2021-07-29 06:43:26 -05:00
|
LL | asm!("{}", options(), clobber_abi("C"), const foo);
| --------- ^^^^^^^^^^^^^^^^
| |
| options
2020-02-20 03:19:48 -06:00
error: duplicate argument named `a`
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:55:36
2020-02-20 03:19:48 -06:00
|
LL | asm!("{a}", a = const foo, a = const bar);
| ------------- ^^^^^^^^^^^^^ duplicate argument
| |
| previously here
error: argument never used
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:55:36
2020-02-20 03:19:48 -06:00
|
LL | asm!("{a}", a = const foo, a = const bar);
| ^^^^^^^^^^^^^ argument never used
|
= help: if this argument is intentionally unused, consider using it in an asm comment: `"/* {1} */"`
2020-02-20 03:19:48 -06:00
error: explicit register arguments cannot have names
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:60:18
2020-02-20 03:19:48 -06:00
|
LL | asm!("", a = in("x0") foo);
| ^^^^^^^^^^^^^^^^
2020-02-20 03:19:48 -06:00
error: named arguments cannot follow explicit register arguments
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:62:35
2020-02-20 03:19:48 -06:00
|
LL | asm!("{a}", in("x0") foo, a = const bar);
| ------------ ^^^^^^^^^^^^^ named argument
2020-02-20 03:19:48 -06:00
| |
| explicit register argument
error: named arguments cannot follow explicit register arguments
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:65:35
2020-02-20 03:19:48 -06:00
|
LL | asm!("{a}", in("x0") foo, a = const bar);
| ------------ ^^^^^^^^^^^^^ named argument
2020-02-20 03:19:48 -06:00
| |
| explicit register argument
error: positional arguments cannot follow named arguments or explicit register arguments
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:68:35
2020-02-20 03:19:48 -06:00
|
LL | asm!("{1}", in("x0") foo, const bar);
| ------------ ^^^^^^^^^ positional argument
2020-02-20 03:19:48 -06:00
| |
| explicit register argument
2021-07-29 06:43:26 -05:00
error: expected one of `clobber_abi`, `const`, `in`, `inlateout`, `inout`, `lateout`, `options`, `out`, or `sym`, found `""`
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:71:29
asm: Allow multiple template strings; interpret them as newline-separated Allow the `asm!` macro to accept a series of template arguments, and interpret them as if they were concatenated with a '\n' between them. This allows writing an `asm!` where each line of assembly appears in a separate template string argument. This syntax makes it possible for rustfmt to reliably format and indent each line of assembly, without risking changes to the inside of a template string. It also avoids the complexity of having the user carefully format and indent a multi-line string (including where to put the surrounding quotes), and avoids the extra indentation and lines of a call to `concat!`. For example, rewriting the second example from the [blog post on the new inline assembly syntax](https://blog.rust-lang.org/inside-rust/2020/06/08/new-inline-asm.html) using multiple template strings: ```rust fn main() { let mut bits = [0u8; 64]; for value in 0..=1024u64 { let popcnt; unsafe { asm!( " popcnt {popcnt}, {v}", "2:", " blsi rax, {v}", " jz 1f", " xor {v}, rax", " tzcnt rax, rax", " stosb", " jmp 2b", "1:", v = inout(reg) value => _, popcnt = out(reg) popcnt, out("rax") _, // scratch inout("rdi") bits.as_mut_ptr() => _, ); } println!("bits of {}: {:?}", value, &bits[0..popcnt]); } } ``` Note that all the template strings must appear before all other arguments; you cannot, for instance, provide a series of template strings intermixed with the corresponding operands. In order to get srcloc mappings right for macros that generate multi-line string literals, create one line_span for each line in the string literal, each pointing to the macro. Make `rustc_parse_format::Parser::curarg` `pub`, so that we can propagate it from one template string argument to the next.
2020-06-15 01:33:55 -05:00
|
LL | asm!("", options(), "");
2021-07-29 06:43:26 -05:00
| ^^ expected one of 9 possible tokens
asm: Allow multiple template strings; interpret them as newline-separated Allow the `asm!` macro to accept a series of template arguments, and interpret them as if they were concatenated with a '\n' between them. This allows writing an `asm!` where each line of assembly appears in a separate template string argument. This syntax makes it possible for rustfmt to reliably format and indent each line of assembly, without risking changes to the inside of a template string. It also avoids the complexity of having the user carefully format and indent a multi-line string (including where to put the surrounding quotes), and avoids the extra indentation and lines of a call to `concat!`. For example, rewriting the second example from the [blog post on the new inline assembly syntax](https://blog.rust-lang.org/inside-rust/2020/06/08/new-inline-asm.html) using multiple template strings: ```rust fn main() { let mut bits = [0u8; 64]; for value in 0..=1024u64 { let popcnt; unsafe { asm!( " popcnt {popcnt}, {v}", "2:", " blsi rax, {v}", " jz 1f", " xor {v}, rax", " tzcnt rax, rax", " stosb", " jmp 2b", "1:", v = inout(reg) value => _, popcnt = out(reg) popcnt, out("rax") _, // scratch inout("rdi") bits.as_mut_ptr() => _, ); } println!("bits of {}: {:?}", value, &bits[0..popcnt]); } } ``` Note that all the template strings must appear before all other arguments; you cannot, for instance, provide a series of template strings intermixed with the corresponding operands. In order to get srcloc mappings right for macros that generate multi-line string literals, create one line_span for each line in the string literal, each pointing to the macro. Make `rustc_parse_format::Parser::curarg` `pub`, so that we can propagate it from one template string argument to the next.
2020-06-15 01:33:55 -05:00
2021-07-29 06:43:26 -05:00
error: expected one of `clobber_abi`, `const`, `in`, `inlateout`, `inout`, `lateout`, `options`, `out`, or `sym`, found `"{}"`
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:73:33
asm: Allow multiple template strings; interpret them as newline-separated Allow the `asm!` macro to accept a series of template arguments, and interpret them as if they were concatenated with a '\n' between them. This allows writing an `asm!` where each line of assembly appears in a separate template string argument. This syntax makes it possible for rustfmt to reliably format and indent each line of assembly, without risking changes to the inside of a template string. It also avoids the complexity of having the user carefully format and indent a multi-line string (including where to put the surrounding quotes), and avoids the extra indentation and lines of a call to `concat!`. For example, rewriting the second example from the [blog post on the new inline assembly syntax](https://blog.rust-lang.org/inside-rust/2020/06/08/new-inline-asm.html) using multiple template strings: ```rust fn main() { let mut bits = [0u8; 64]; for value in 0..=1024u64 { let popcnt; unsafe { asm!( " popcnt {popcnt}, {v}", "2:", " blsi rax, {v}", " jz 1f", " xor {v}, rax", " tzcnt rax, rax", " stosb", " jmp 2b", "1:", v = inout(reg) value => _, popcnt = out(reg) popcnt, out("rax") _, // scratch inout("rdi") bits.as_mut_ptr() => _, ); } println!("bits of {}: {:?}", value, &bits[0..popcnt]); } } ``` Note that all the template strings must appear before all other arguments; you cannot, for instance, provide a series of template strings intermixed with the corresponding operands. In order to get srcloc mappings right for macros that generate multi-line string literals, create one line_span for each line in the string literal, each pointing to the macro. Make `rustc_parse_format::Parser::curarg` `pub`, so that we can propagate it from one template string argument to the next.
2020-06-15 01:33:55 -05:00
|
LL | asm!("{}", in(reg) foo, "{}", out(reg) foo);
2021-07-29 06:43:26 -05:00
| ^^^^ expected one of 9 possible tokens
asm: Allow multiple template strings; interpret them as newline-separated Allow the `asm!` macro to accept a series of template arguments, and interpret them as if they were concatenated with a '\n' between them. This allows writing an `asm!` where each line of assembly appears in a separate template string argument. This syntax makes it possible for rustfmt to reliably format and indent each line of assembly, without risking changes to the inside of a template string. It also avoids the complexity of having the user carefully format and indent a multi-line string (including where to put the surrounding quotes), and avoids the extra indentation and lines of a call to `concat!`. For example, rewriting the second example from the [blog post on the new inline assembly syntax](https://blog.rust-lang.org/inside-rust/2020/06/08/new-inline-asm.html) using multiple template strings: ```rust fn main() { let mut bits = [0u8; 64]; for value in 0..=1024u64 { let popcnt; unsafe { asm!( " popcnt {popcnt}, {v}", "2:", " blsi rax, {v}", " jz 1f", " xor {v}, rax", " tzcnt rax, rax", " stosb", " jmp 2b", "1:", v = inout(reg) value => _, popcnt = out(reg) popcnt, out("rax") _, // scratch inout("rdi") bits.as_mut_ptr() => _, ); } println!("bits of {}: {:?}", value, &bits[0..popcnt]); } } ``` Note that all the template strings must appear before all other arguments; you cannot, for instance, provide a series of template strings intermixed with the corresponding operands. In order to get srcloc mappings right for macros that generate multi-line string literals, create one line_span for each line in the string literal, each pointing to the macro. Make `rustc_parse_format::Parser::curarg` `pub`, so that we can propagate it from one template string argument to the next.
2020-06-15 01:33:55 -05:00
error: asm template must be a string literal
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:75:14
asm: Allow multiple template strings; interpret them as newline-separated Allow the `asm!` macro to accept a series of template arguments, and interpret them as if they were concatenated with a '\n' between them. This allows writing an `asm!` where each line of assembly appears in a separate template string argument. This syntax makes it possible for rustfmt to reliably format and indent each line of assembly, without risking changes to the inside of a template string. It also avoids the complexity of having the user carefully format and indent a multi-line string (including where to put the surrounding quotes), and avoids the extra indentation and lines of a call to `concat!`. For example, rewriting the second example from the [blog post on the new inline assembly syntax](https://blog.rust-lang.org/inside-rust/2020/06/08/new-inline-asm.html) using multiple template strings: ```rust fn main() { let mut bits = [0u8; 64]; for value in 0..=1024u64 { let popcnt; unsafe { asm!( " popcnt {popcnt}, {v}", "2:", " blsi rax, {v}", " jz 1f", " xor {v}, rax", " tzcnt rax, rax", " stosb", " jmp 2b", "1:", v = inout(reg) value => _, popcnt = out(reg) popcnt, out("rax") _, // scratch inout("rdi") bits.as_mut_ptr() => _, ); } println!("bits of {}: {:?}", value, &bits[0..popcnt]); } } ``` Note that all the template strings must appear before all other arguments; you cannot, for instance, provide a series of template strings intermixed with the corresponding operands. In order to get srcloc mappings right for macros that generate multi-line string literals, create one line_span for each line in the string literal, each pointing to the macro. Make `rustc_parse_format::Parser::curarg` `pub`, so that we can propagate it from one template string argument to the next.
2020-06-15 01:33:55 -05:00
|
LL | asm!(format!("{{{}}}", 0), in(reg) foo);
| ^^^^^^^^^^^^^^^^^^^^
|
= note: this error originates in the macro `format` (in Nightly builds, run with -Z macro-backtrace for more info)
asm: Allow multiple template strings; interpret them as newline-separated Allow the `asm!` macro to accept a series of template arguments, and interpret them as if they were concatenated with a '\n' between them. This allows writing an `asm!` where each line of assembly appears in a separate template string argument. This syntax makes it possible for rustfmt to reliably format and indent each line of assembly, without risking changes to the inside of a template string. It also avoids the complexity of having the user carefully format and indent a multi-line string (including where to put the surrounding quotes), and avoids the extra indentation and lines of a call to `concat!`. For example, rewriting the second example from the [blog post on the new inline assembly syntax](https://blog.rust-lang.org/inside-rust/2020/06/08/new-inline-asm.html) using multiple template strings: ```rust fn main() { let mut bits = [0u8; 64]; for value in 0..=1024u64 { let popcnt; unsafe { asm!( " popcnt {popcnt}, {v}", "2:", " blsi rax, {v}", " jz 1f", " xor {v}, rax", " tzcnt rax, rax", " stosb", " jmp 2b", "1:", v = inout(reg) value => _, popcnt = out(reg) popcnt, out("rax") _, // scratch inout("rdi") bits.as_mut_ptr() => _, ); } println!("bits of {}: {:?}", value, &bits[0..popcnt]); } } ``` Note that all the template strings must appear before all other arguments; you cannot, for instance, provide a series of template strings intermixed with the corresponding operands. In order to get srcloc mappings right for macros that generate multi-line string literals, create one line_span for each line in the string literal, each pointing to the macro. Make `rustc_parse_format::Parser::curarg` `pub`, so that we can propagate it from one template string argument to the next.
2020-06-15 01:33:55 -05:00
error: asm template must be a string literal
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:77:21
asm: Allow multiple template strings; interpret them as newline-separated Allow the `asm!` macro to accept a series of template arguments, and interpret them as if they were concatenated with a '\n' between them. This allows writing an `asm!` where each line of assembly appears in a separate template string argument. This syntax makes it possible for rustfmt to reliably format and indent each line of assembly, without risking changes to the inside of a template string. It also avoids the complexity of having the user carefully format and indent a multi-line string (including where to put the surrounding quotes), and avoids the extra indentation and lines of a call to `concat!`. For example, rewriting the second example from the [blog post on the new inline assembly syntax](https://blog.rust-lang.org/inside-rust/2020/06/08/new-inline-asm.html) using multiple template strings: ```rust fn main() { let mut bits = [0u8; 64]; for value in 0..=1024u64 { let popcnt; unsafe { asm!( " popcnt {popcnt}, {v}", "2:", " blsi rax, {v}", " jz 1f", " xor {v}, rax", " tzcnt rax, rax", " stosb", " jmp 2b", "1:", v = inout(reg) value => _, popcnt = out(reg) popcnt, out("rax") _, // scratch inout("rdi") bits.as_mut_ptr() => _, ); } println!("bits of {}: {:?}", value, &bits[0..popcnt]); } } ``` Note that all the template strings must appear before all other arguments; you cannot, for instance, provide a series of template strings intermixed with the corresponding operands. In order to get srcloc mappings right for macros that generate multi-line string literals, create one line_span for each line in the string literal, each pointing to the macro. Make `rustc_parse_format::Parser::curarg` `pub`, so that we can propagate it from one template string argument to the next.
2020-06-15 01:33:55 -05:00
|
LL | asm!("{1}", format!("{{{}}}", 0), in(reg) foo, out(reg) bar);
| ^^^^^^^^^^^^^^^^^^^^
|
= note: this error originates in the macro `format` (in Nightly builds, run with -Z macro-backtrace for more info)
asm: Allow multiple template strings; interpret them as newline-separated Allow the `asm!` macro to accept a series of template arguments, and interpret them as if they were concatenated with a '\n' between them. This allows writing an `asm!` where each line of assembly appears in a separate template string argument. This syntax makes it possible for rustfmt to reliably format and indent each line of assembly, without risking changes to the inside of a template string. It also avoids the complexity of having the user carefully format and indent a multi-line string (including where to put the surrounding quotes), and avoids the extra indentation and lines of a call to `concat!`. For example, rewriting the second example from the [blog post on the new inline assembly syntax](https://blog.rust-lang.org/inside-rust/2020/06/08/new-inline-asm.html) using multiple template strings: ```rust fn main() { let mut bits = [0u8; 64]; for value in 0..=1024u64 { let popcnt; unsafe { asm!( " popcnt {popcnt}, {v}", "2:", " blsi rax, {v}", " jz 1f", " xor {v}, rax", " tzcnt rax, rax", " stosb", " jmp 2b", "1:", v = inout(reg) value => _, popcnt = out(reg) popcnt, out("rax") _, // scratch inout("rdi") bits.as_mut_ptr() => _, ); } println!("bits of {}: {:?}", value, &bits[0..popcnt]); } } ``` Note that all the template strings must appear before all other arguments; you cannot, for instance, provide a series of template strings intermixed with the corresponding operands. In order to get srcloc mappings right for macros that generate multi-line string literals, create one line_span for each line in the string literal, each pointing to the macro. Make `rustc_parse_format::Parser::curarg` `pub`, so that we can propagate it from one template string argument to the next.
2020-06-15 01:33:55 -05:00
error: _ cannot be used for input operands
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:79:28
|
LL | asm!("{}", in(reg) _);
| ^
error: _ cannot be used for input operands
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:81:31
|
LL | asm!("{}", inout(reg) _);
| ^
error: _ cannot be used for input operands
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:83:35
|
LL | asm!("{}", inlateout(reg) _);
| ^
2021-04-13 12:11:11 -05:00
error: requires at least a template string argument
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:90:1
2021-04-13 12:11:11 -05:00
|
LL | global_asm!();
2021-10-14 13:28:28 -05:00
| ^^^^^^^^^^^^^
2021-04-13 12:11:11 -05:00
error: asm template must be a string literal
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:92:13
2021-04-13 12:11:11 -05:00
|
LL | global_asm!(FOO);
| ^^^
error: expected token: `,`
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:94:18
2021-04-13 12:11:11 -05:00
|
LL | global_asm!("{}" FOO);
| ^^^ expected `,`
error: expected operand, options, or additional template string
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:96:19
2021-04-13 12:11:11 -05:00
|
LL | global_asm!("{}", FOO);
| ^^^ expected operand, options, or additional template string
error: expected expression, found end of macro arguments
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:98:24
2021-04-13 12:11:11 -05:00
|
LL | global_asm!("{}", const);
| ^ expected expression
error: expected one of `,`, `.`, `?`, or an operator, found `FOO`
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:100:30
2021-04-13 12:11:11 -05:00
|
LL | global_asm!("{}", const(reg) FOO);
| ^^^ expected one of `,`, `.`, `?`, or an operator
error: expected one of `)`, `att_syntax`, or `raw`, found `FOO`
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:102:25
2021-04-13 12:11:11 -05:00
|
LL | global_asm!("", options(FOO));
| ^^^ expected one of `)`, `att_syntax`, or `raw`
2021-04-13 12:11:11 -05:00
error: expected one of `)`, `att_syntax`, or `raw`, found `nomem`
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:104:25
2021-04-13 12:11:11 -05:00
|
LL | global_asm!("", options(nomem FOO));
| ^^^^^ expected one of `)`, `att_syntax`, or `raw`
2021-04-13 12:11:11 -05:00
error: expected one of `)`, `att_syntax`, or `raw`, found `nomem`
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:106:25
2021-04-13 12:11:11 -05:00
|
LL | global_asm!("", options(nomem, FOO));
| ^^^^^ expected one of `)`, `att_syntax`, or `raw`
2021-04-13 12:11:11 -05:00
error: arguments are not allowed after options
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:108:30
2021-04-13 12:11:11 -05:00
|
LL | global_asm!("{}", options(), const FOO);
| --------- ^^^^^^^^^ argument
| |
| previous options
2021-07-29 06:43:26 -05:00
error: expected string literal
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:110:29
2021-07-29 06:43:26 -05:00
|
LL | global_asm!("", clobber_abi(FOO));
| ^^^ not a string literal
2021-10-17 02:30:24 -05:00
error: expected one of `)` or `,`, found `FOO`
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:112:33
2021-07-29 06:43:26 -05:00
|
LL | global_asm!("", clobber_abi("C" FOO));
2021-10-17 02:30:24 -05:00
| ^^^ expected one of `)` or `,`
2021-07-29 06:43:26 -05:00
2021-10-17 02:30:24 -05:00
error: expected string literal
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:114:34
2021-07-29 06:43:26 -05:00
|
LL | global_asm!("", clobber_abi("C", FOO));
2021-10-17 02:30:24 -05:00
| ^^^ not a string literal
2021-07-29 06:43:26 -05:00
error: arguments are not allowed after clobber_abi
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:116:37
2021-07-29 06:43:26 -05:00
|
LL | global_asm!("{}", clobber_abi("C"), const FOO);
| ---------------- ^^^^^^^^^ argument
| |
| clobber_abi
error: `clobber_abi` cannot be used with `global_asm!`
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:116:19
2021-07-29 06:43:26 -05:00
|
LL | global_asm!("{}", clobber_abi("C"), const FOO);
| ^^^^^^^^^^^^^^^^
error: clobber_abi is not allowed after options
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:119:28
2021-07-29 06:43:26 -05:00
|
LL | global_asm!("", options(), clobber_abi("C"));
| --------- ^^^^^^^^^^^^^^^^
| |
| options
error: clobber_abi is not allowed after options
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:121:30
2021-07-29 06:43:26 -05:00
|
LL | global_asm!("{}", options(), clobber_abi("C"), const FOO);
| --------- ^^^^^^^^^^^^^^^^
| |
| options
2021-04-13 12:11:11 -05:00
error: duplicate argument named `a`
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:123:35
2021-04-13 12:11:11 -05:00
|
LL | global_asm!("{a}", a = const FOO, a = const BAR);
| ------------- ^^^^^^^^^^^^^ duplicate argument
| |
| previously here
error: argument never used
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:123:35
2021-04-13 12:11:11 -05:00
|
LL | global_asm!("{a}", a = const FOO, a = const BAR);
| ^^^^^^^^^^^^^ argument never used
|
= help: if this argument is intentionally unused, consider using it in an asm comment: `"/* {1} */"`
error: expected one of `clobber_abi`, `const`, `options`, or `sym`, found `""`
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:126:28
2021-04-13 12:11:11 -05:00
|
LL | global_asm!("", options(), "");
| ^^ expected one of `clobber_abi`, `const`, `options`, or `sym`
2021-04-13 12:11:11 -05:00
error: expected one of `clobber_abi`, `const`, `options`, or `sym`, found `"{}"`
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:128:30
2021-04-13 12:11:11 -05:00
|
LL | global_asm!("{}", const FOO, "{}", const FOO);
| ^^^^ expected one of `clobber_abi`, `const`, `options`, or `sym`
2021-04-13 12:11:11 -05:00
error: asm template must be a string literal
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:130:13
2021-04-13 12:11:11 -05:00
|
LL | global_asm!(format!("{{{}}}", 0), const FOO);
| ^^^^^^^^^^^^^^^^^^^^
|
2021-05-13 17:09:54 -05:00
= note: this error originates in the macro `format` (in Nightly builds, run with -Z macro-backtrace for more info)
2021-04-13 12:11:11 -05:00
error: asm template must be a string literal
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:132:20
2021-04-13 12:11:11 -05:00
|
LL | global_asm!("{1}", format!("{{{}}}", 0), const FOO, const BAR);
| ^^^^^^^^^^^^^^^^^^^^
|
2021-05-13 17:09:54 -05:00
= note: this error originates in the macro `format` (in Nightly builds, run with -Z macro-backtrace for more info)
2021-04-13 12:11:11 -05:00
2021-04-05 23:50:55 -05:00
error[E0435]: attempt to use a non-constant value in a constant
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:39:37
2021-04-05 23:50:55 -05:00
|
LL | let mut foo = 0;
| ----------- help: consider using `const` instead of `let`: `const foo`
2021-04-05 23:50:55 -05:00
...
LL | asm!("{}", options(), const foo);
| ^^^ non-constant value
error[E0435]: attempt to use a non-constant value in a constant
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:48:44
2021-07-29 06:43:26 -05:00
|
LL | let mut foo = 0;
| ----------- help: consider using `const` instead of `let`: `const foo`
2021-07-29 06:43:26 -05:00
...
LL | asm!("{}", clobber_abi("C"), const foo);
| ^^^ non-constant value
error[E0435]: attempt to use a non-constant value in a constant
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:55:31
2021-04-05 23:50:55 -05:00
|
LL | let mut foo = 0;
| ----------- help: consider using `const` instead of `let`: `const foo`
2021-04-05 23:50:55 -05:00
...
LL | asm!("{a}", a = const foo, a = const bar);
| ^^^ non-constant value
error[E0435]: attempt to use a non-constant value in a constant
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:55:46
2021-04-05 23:50:55 -05:00
|
LL | let mut bar = 0;
| ----------- help: consider using `const` instead of `let`: `const bar`
2021-04-05 23:50:55 -05:00
...
LL | asm!("{a}", a = const foo, a = const bar);
| ^^^ non-constant value
error[E0435]: attempt to use a non-constant value in a constant
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:62:45
2021-04-05 23:50:55 -05:00
|
LL | let mut bar = 0;
| ----------- help: consider using `const` instead of `let`: `const bar`
2021-04-05 23:50:55 -05:00
...
LL | asm!("{a}", in("x0") foo, a = const bar);
| ^^^ non-constant value
2021-04-05 23:50:55 -05:00
error[E0435]: attempt to use a non-constant value in a constant
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:65:45
2021-04-05 23:50:55 -05:00
|
LL | let mut bar = 0;
| ----------- help: consider using `const` instead of `let`: `const bar`
2021-04-05 23:50:55 -05:00
...
LL | asm!("{a}", in("x0") foo, a = const bar);
| ^^^ non-constant value
2021-04-05 23:50:55 -05:00
error[E0435]: attempt to use a non-constant value in a constant
2021-12-10 18:11:10 -06:00
--> $DIR/parse-error.rs:68:41
2021-04-05 23:50:55 -05:00
|
LL | let mut bar = 0;
| ----------- help: consider using `const` instead of `let`: `const bar`
2021-04-05 23:50:55 -05:00
...
LL | asm!("{1}", in("x0") foo, const bar);
| ^^^ non-constant value
2021-04-05 23:50:55 -05:00
2021-10-17 02:30:24 -05:00
error: aborting due to 64 previous errors
2020-02-20 03:19:48 -06:00
2021-04-05 23:50:55 -05:00
For more information about this error, try `rustc --explain E0435`.