summaryrefslogtreecommitdiffstats
path: root/compiler/rustc_error_codes/src/error_codes/E0664.md
blob: 34135d5db33388f82e3ac4d69c9f33560fd032a2 (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.

A clobber was surrounded by braces in the `llvm_asm` macro.

Erroneous code example:

```ignore (no longer emitted)
llvm_asm!("mov $$0x200, %eax"
          :
          :
          : "{eax}"
         );
```