about summary refs log tree commit diff
path: root/src/test/codegen/nounwind-extern.rs
AgeCommit message (Collapse)AuthorLines
2019-10-12also (properly) test nounwind on function definitionsRalf Jung-6/+0
2018-12-25Remove licensesMark Rousskov-10/+0
2018-12-12rustc: Switch `extern` functions to abort by default on panicAlex Crichton-0/+16
This was intended to land way back in 1.24, but it was backed out due to breakage which has long since been fixed. An unstable `#[unwind]` attribute can be used to tweak the behavior here, but this is currently simply switching rustc's internal default to abort-by-default if an `extern` function panics, making our codegen sound primarily (as currently you can produce UB with safe code) Closes #52652