about summary refs log tree commit diff
path: root/tests/mir-opt/enum_opt.rs
AgeCommit message (Collapse)AuthorLines
2025-05-28Stabilise `repr128`beetrees-2/+0
2024-06-26Use `-Zdump-mir-exclude-alloc-bytes` in some mir-opt testsJosh Stone-1/+1
2024-06-03rustfmt `tests/mir-opt`.Nicholas Nethercote-31/+31
The only non-obvious changes: - `building/storage_live_dead_in_statics.rs` has a `#[rustfmt::skip]` attribute to avoid reformating a table of data. - Two `.mir` files have slight changes involving line numbers. - In `unusual_item_types.rs` an `EMIT_MIR` annotation is moved to outside a function, which is the usual spot, because `tidy` complains if such a comment is indented. The commit also tweaks the comments in `rustfmt.toml`.
2024-04-20mir-opt tests: rename unit-test -> test-mir-passRalf Jung-1/+1
2024-02-22[AUTO_GENERATED] Migrate compiletest to use `ui_test`-style `//@` directives许杰友 Jieyou Xu (Joe)-2/+2
2023-10-19Allow to run filecheck in mir-opt tests.Camille GILLOT-0/+1
2023-02-08Add de-init to destination placekadmin-12/+16
2023-02-07Leave FIXME for wasm layout difference.kadmin-7/+9
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-0/+1
2023-02-07Rm allocation in candidatekadmin-0/+79
Instead of storing an extra array for discriminant values, create an allocation there and store those in an allocation immediately.