about summary refs log tree commit diff
path: root/tests/ui/abi/debug.generic.stderr
AgeCommit message (Collapse)AuthorLines
2025-08-26Use captures(address) instead of captures(none) for indirect argsNikita Popov-2/+2
While provenance cannot be captured through these arguments, the address / object identity can.
2025-08-21Fix the ABI parameter inconsistency issue in debug.rs for LoongArch64WANG Rui-12/+12
2025-08-20Tell LLVM about read-only capturesNikita Popov-1/+1
`&Freeze` parameters are not only `readonly` within the function, but any captures of the pointer can also only be used for reads. This can now be encoded using the `captures(address, read_provenance)` attribute.
2025-07-04Fix tests/ui/abi/debug.rs to cross-compile for riscv64Jubilee Young-15/+15
2025-07-04Fixed the ABI parameter inconsistency issue in debug.rs for the riscv64 ↵YingkaiLi-VM-0/+991
architecture.