about summary refs log tree commit diff
path: root/src/test/codegen/auxiliary
AgeCommit message (Collapse)AuthorLines
2021-05-18std: Attempt again to inline thread-local-init across cratesAlex Crichton-0/+6
Issue #25088 has been part of `thread_local!` for quite some time now. Historical attempts have been made to add `#[inline]` to `__getit` in #43931, #50252, and #59720, but these attempts ended up not landing at the time due to segfaults on Windows. In the interim though with `const`-initialized thread locals AFAIK this is the only remaining bug which is why you might want to use `#[thread_local]` over `thread_local!`. As a result I figured it was time to resubmit this and see how it fares on CI and if I can help debugging any issues that crop up. Closes #25088
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