Error code E0664

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:

llvm_asm!("mov $$0x200, %eax"
          :
          :
          : "{eax}"
         );