You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- The type of the expression may be any integer type, but defaults to `i32` just like integer literals.
181
181
- The value of the expression is formatted as a string and substituted directly into the asm template string.
182
182
183
+
r[asm.operand-type.supported-operands.label]
184
+
*`label <block>`
185
+
- The address of the block is substituted into the asm template string. The assembly block may jump to the substituted addresses.
186
+
- After execution of the block, the `asm!` expression returns.
187
+
- The type of the block must be unit or `!` (never).
188
+
- The block starts new safety context; despite the outer `unsafe` needed for `asm!`, you need extra unsafe to perform unsafe operations inside the block.
189
+
183
190
r[asm.operand-type.left-to-right]
184
191
Operand expressions are evaluated from left to right, just like function call arguments.
185
192
After the `asm!` has executed, outputs are written to in left to right order.
0 commit comments