about summary refs log tree commit diff
path: root/tests/mir-opt/enum_opt.unin.EnumSizeOpt.64bit.diff
AgeCommit message (Collapse)AuthorLines
2025-02-18Use `MirPatch` in `EnumSizeOpt`.Nicholas Nethercote-0/+2
Instead of `expand_statements`. This makes the code shorter and consistent with other MIR transform passes. The tests require updating because there is a slight change in MIR output: - the old code replaced the original statement with twelve new statements. - the new code inserts converts the original statement to a `nop` and then insert twelve new statements in front of it. I.e. we now end up with an extra `nop`, which doesn't matter at all.
2024-08-18Bless *all* the mir-opt testsScott McMurray-10/+10
2024-06-26Bless mir-opt for excluded alloc bytesJosh Stone-4/+2
2023-10-16Normalize alloc-id in tests.Camille GILLOT-1/+1
2023-09-14bless allRalf Jung-0/+4
2023-06-15Remove comments from mir-opt MIR dumpsBen Kimock-57/+57
2023-02-08Add de-init to destination placekadmin-13/+31
2023-02-07Leave FIXME for wasm layout difference.kadmin-43/+39
There is a distinction between running this on wasm and i686, even though they should be identical. This technically is not _incorrect_, it's just an unexpected difference, which is worth investigating, but not for correctness.
2023-02-07Add tag for ignoring wasmkadmin-40/+40
2023-02-07Rm allocation in candidatekadmin-0/+54
Instead of storing an extra array for discriminant values, create an allocation there and store those in an allocation immediately.