]> git.proxmox.com Git - rustc.git/blame - src/test/ui/inline-asm-bad-constraint.stderr
New upstream version 1.50.0+dfsg1
[rustc.git] / src / test / ui / inline-asm-bad-constraint.stderr
CommitLineData
0bf4aa26 1error[E0668]: malformed inline assembly
dfeec247 2 --> $DIR/inline-asm-bad-constraint.rs:22:9
0bf4aa26 3 |
ba9703b0
XL
4LL | llvm_asm!("" :"={rax"(rax))
5 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^
74b04a01
XL
6 |
7 = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
0bf4aa26
XL
8
9error[E0668]: malformed inline assembly
dfeec247 10 --> $DIR/inline-asm-bad-constraint.rs:30:9
0bf4aa26 11 |
ba9703b0
XL
12LL | llvm_asm!("callq $0" : : "0"(foo))
13 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
74b04a01
XL
14 |
15 = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
0bf4aa26
XL
16
17error[E0668]: malformed inline assembly
dfeec247 18 --> $DIR/inline-asm-bad-constraint.rs:37:9
0bf4aa26 19 |
ba9703b0
XL
20LL | llvm_asm!("addb $1, $0" : "={rax}"((0i32, rax)));
21 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
74b04a01
XL
22 |
23 = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
0bf4aa26
XL
24
25error: aborting due to 3 previous errors
26
60c5eb7d 27For more information about this error, try `rustc --explain E0668`.