We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19f3c52 commit 1b7a454Copy full SHA for 1b7a454
src/inline-assembly.md
@@ -194,7 +194,7 @@ All other named and positional operands must appear at least once in the templat
194
let x = 5;
195
# #[cfg(target_arch = "x86_64")] {
196
// We have to name all of the operands in the format string
197
- unsafe { core::arch::asm!("". in(reg) 5, x = const 5); }
+ unsafe { core::arch::asm!("", in(reg) 5, x = const 5); }
198
# }
199
# #[cfg(not(target_arch = "x86_64"))] core::compile_error!("Test not supported on this arch");
200
```
0 commit comments