about summary refs log tree commit diff
path: root/src/test/codegen/auxiliary
AgeCommit message (Collapse)AuthorLines
2018-12-25Remove licensesMark Rousskov-10/+0
2017-10-11rustc: Add LLVM `nounwind` with `-C panic=abort`Alex Crichton-0/+13
This informs LLVM that functions can't unwind, which while it should typically have already been inferred when necessary or otherwise not impact codegen is apparently needed on targets like ARM to avoid references to unnecessary symbols. Closes #44992