Skip to content

Commit a70b2ed

Browse files
committed
Outputs no longer have to be mutable
1 parent 3d0ad46 commit a70b2ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/doc/trpl/inline-assembly.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ asm!("xor %eax, %eax" ::: "{eax}");
7777

7878
Input and output operands follow the same format: `:
7979
"constraints1"(expr1), "constraints2"(expr2), ..."`. Output operand
80-
expressions must be mutable lvalues:
80+
expressions must be mutable lvalues, or not yet assigned:
8181

8282
```
8383
# #![feature(asm)]

0 commit comments

Comments
 (0)