]> git.proxmox.com Git - rustc.git/blame - src/test/ui/llvm-asm/llvm-asm-in-bad-modifier.stderr
New upstream version 1.56.0~beta.4+dfsg1
[rustc.git] / src / test / ui / llvm-asm / llvm-asm-in-bad-modifier.stderr
CommitLineData
ba9703b0 1error[E0662]: input operand constraint contains '='
94222f64 2 --> $DIR/llvm-asm-in-bad-modifier.rs:25:44
ba9703b0
XL
3 |
4LL | llvm_asm!("mov $1, $0" : "=r"(x) : "=r"(5));
5 | ^^^^
6
7error[E0663]: input operand constraint contains '+'
94222f64 8 --> $DIR/llvm-asm-in-bad-modifier.rs:26:44
ba9703b0
XL
9 |
10LL | llvm_asm!("mov $1, $0" : "=r"(y) : "+r"(5));
11 | ^^^^
12
13error: aborting due to 2 previous errors
14
15Some errors have detailed explanations: E0662, E0663.
16For more information about an error, try `rustc --explain E0662`.