rust/tests/mir-opt/simplify_locals_removes_unused_consts.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
415 B
Rust
Raw Normal View History

2023-04-05 08:44:20 +00:00
// ignore-wasm32 compiled with panic=abort by default
2022-12-04 19:20:55 +00:00
// unit-test: SimplifyLocals-before-const-prop
// compile-flags: -C overflow-checks=no
fn use_zst(_: ((), ())) {}
struct Temp {
x: u8,
}
fn use_u8(_: u8) {}
2022-12-04 19:20:55 +00:00
// EMIT_MIR simplify_locals_removes_unused_consts.main.SimplifyLocals-before-const-prop.diff
fn main() {
let ((), ()) = ((), ());
use_zst(((), ()));
use_u8((Temp { x: 40 }).x + 2);
}