about summary refs log tree commit diff
path: root/src/test/mir-opt/issue_76432.test.SimplifyComparisonIntegral.diff
AgeCommit message (Collapse)AuthorLines
2021-10-06run remaining testsAlexander-5/+7
2021-05-17mir-opt bless for Size field being removed from AllocationRalf Jung-2/+2
2021-03-15bless testsErik Desjardins-1/+1
2021-01-25Implement new panic!() behaviour for Rust 2021.Mara Bos-4/+4
2020-11-23Qualify `panic!` as `core::panic!` in non-built-in `core` macrosCamelid-5/+5
Otherwise code like this #![no_implicit_prelude] fn main() { ::std::todo!(); ::std::unimplemented!(); } will fail to compile, which is unfortunate and presumably unintended. This changes many invocations of `panic!` in a `macro_rules!` definition to invocations of `$crate::panic!`, which makes the invocations hygienic. Note that this does not make the built-in macro `assert!` hygienic.
2020-09-13Fix #76432Simon Vandel Sillesen-0/+116
Only insert StorageDeads if we actually removed one. Fixes an issue where we added StorageDead to a place with no StorageLive