about summary refs log tree commit diff
path: root/src/test/incremental/issue-72386.rs
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-21/+0
2021-12-29Add a couple needs-asm-support headers to testsbjorn3-0/+1
This will allow them to be ignored by codegen backends that don't support inline asm.
2021-12-12Stabilize asm! and global_asm!Amanieu d'Antras-4/+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.
2020-05-23Add missing ASM arena declaration to librustc_middleAaron Hill-0/+22
Fixes #72386 This type also needs to get allocated on the `librustc_middle` arena when we deserialize MIR.