Outputs no longer have to be mutable

This commit is contained in:
Nicholas 2015-04-26 10:34:28 -07:00
parent 3d0ad46eea
commit a70b2ed826

View File

@ -77,7 +77,7 @@ asm!("xor %eax, %eax" ::: "{eax}");
Input and output operands follow the same format: `:
"constraints1"(expr1), "constraints2"(expr2), ..."`. Output operand
expressions must be mutable lvalues:
expressions must be mutable lvalues, or not yet assigned:
```
# #![feature(asm)]