about summary refs log tree commit diff
path: root/src/test/codegen/asm-clobbers.rs
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-20/+0
2021-12-12Stabilize asm! and global_asm!Amanieu d'Antras-1/+2
They are also removed from the prelude as per the decision in https://github.com/rust-lang/rust/issues/87228. stdarch and compiler-builtins are updated to work with the new, stable asm! and global_asm! macros.
2021-07-10Add clobber-only register classes for asm!Amanieu d'Antras-0/+19
These are needed to properly express a function call ABI using a clobber list, even though we don't support passing actual values into/out of these registers.