mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-17 09:16:47 +00:00
Allow rustdoc to handle asm! of foreign architectures This allows rustdoc to process code containing `asm!` for architectures other than the current one. Since this never reaches codegen, we just replace target-specific registers and register classes with a dummy one. Fixes #82869