about summary refs log tree commit diff
path: root/src/test/codegen/asm-target-clobbers.rs
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-29/+0
2022-05-17Handle tmm_reg in rustc_codegen_gccConnor Horman-1/+1
2022-05-16add clobbersConnor Horman-0/+7
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-04-04Allow clobbering unsupported registers in asm!Amanieu d'Antras-0/+21
Previously registers could only be marked as clobbered if the target feature for that register was enabled. This restriction is now removed.