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
Auto merge of rust-lang#85290 - Amanieu:asm_const_int, r=nagisa
Remove support for floating-point constants in asm!
Floating-point constants aren't very useful anyways and this simplifies
the code since the type check can now be done in typeck.
cc `@rust-lang/wg-inline-asm`
r? `@nagisa`
Copy file name to clipboardexpand all lines: src/doc/unstable-book/src/library-features/asm.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -509,7 +509,7 @@ Several types of operands are supported:
509
509
- Identical to `inout` except that the register allocator can reuse a register allocated to an `in` (this can happen if the compiler knows the `in` has the same initial value as the `inlateout`).
510
510
- You should only write to the register after all inputs are read, otherwise you may clobber an input.
511
511
*`const <expr>`
512
-
-`<expr>` must be an integer or floating-point constant expression.
512
+
-`<expr>` must be an integer constant expression.
513
513
- The value of the expression is formatted as a string and substituted directly into the asm template string.
0 commit comments