summaryrefslogtreecommitdiffstats
path: root/compiler/rustc_error_codes/src/error_codes/E0663.md
blob: 351cfaca29c1901e7404afe38b18023b7b1c7e31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#### Note: this error code is no longer emitted by the compiler.

An invalid input operand constraint was passed to the `llvm_asm` macro
(third line).

Erroneous code example:

```ignore (no longer emitted)
llvm_asm!("xor %eax, %eax"
          :
          : "+test"("a")
         );
```