about summary refs log tree commit diff
path: root/src/test/codegen/call-metadata.rs
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-17/+0
2022-02-26Apply noundef attribute to all scalar types which do not permit raw initErik Desjardins-2/+2
Beyond `&`/`&mut`/`Box`, this covers `char`, discriminants, `NonZero*`, etc. All such types currently cause a Miri error if left uninitialized, and an `invalid_value` lint in cases like `mem::uninitialized::<char>()` Note that this _does not_ change whether or not it is UB for `u64` (or other integer types with no invalid values) to be undef.
2018-12-25Remove licensesMark Rousskov-10/+0
2018-07-09bump minimum LLVM version to 5.0gnzlbg-2/+0
2018-04-26Emit range metadata on calls returning scalars (fixes #50157)Anthony Ramine-0/+29