about summary refs log tree commit diff
path: root/src/test/codegen/vec-iter-collect-len.rs
AgeCommit message (Collapse)AuthorLines
2018-12-25Remove licensesMark Rousskov-10/+0
2018-08-06inore some codegen tests when debug assertions are enabledRalf Jung-0/+1
2018-05-24std: Ensure OOM is classified as `nounwind`Alex Crichton-0/+21
OOM can't unwind today, and historically it's been optimized as if it can't unwind. This accidentally regressed with recent changes to the OOM handler, so this commit adds in a codegen test to assert that everything gets optimized away after the OOM function is approrpiately classified as nounwind Closes #50925