rust/tests/mir-opt/const_prop/control_flow_simplification.rs

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

24 lines
482 B
Rust
Raw Normal View History

// skip-filecheck
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
//@ test-mir-pass: GVN
2020-03-21 21:37:51 -05:00
//@ compile-flags: -Zmir-opt-level=1
2022-07-26 12:04:27 -05:00
trait NeedsDrop: Sized {
const NEEDS: bool = std::mem::needs_drop::<Self>();
2020-03-21 21:37:51 -05:00
}
2022-07-26 12:04:27 -05:00
impl<This> NeedsDrop for This {}
2020-03-21 21:37:51 -05:00
2023-09-20 16:43:33 -05:00
// EMIT_MIR control_flow_simplification.hello.GVN.diff
2020-07-27 14:22:43 -05:00
// EMIT_MIR control_flow_simplification.hello.PreCodegen.before.mir
fn hello<T>() {
2020-03-21 21:37:51 -05:00
if <bool>::NEEDS {
panic!()
}
}
pub fn main() {
hello::<()>();
hello::<Vec<()>>();
}