about summary refs log tree commit diff
path: root/src/test/ui/mir/issue66339.rs
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-13/+0
2021-03-05Bump mir-opt-level from 2 to 3 in testsSantiago Pastorino-1/+1
2019-12-06const-prop: Restrict scalar pair propagationÖmer Sinan Ağacan-0/+13
We now only propagate a scalar pair if the Rvalue is a tuple with two scalars. This for example avoids propagating a (u8, u8) value when Rvalue has type `((), u8, u8)` (see the regression test). While this is a correct thing to do, implementation is tricky and will be done later. Fixes #66971 Fixes #66339 Fixes #67019