2023-10-16 12:36:39 -05:00
|
|
|
// skip-filecheck
|
2023-06-08 02:18:34 -05:00
|
|
|
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
|
2023-01-15 09:30:09 -06:00
|
|
|
// This is a copy of the `dead_stores_79191` test, except that we turn on DSE. This demonstrates
|
|
|
|
// that that pass enables this one to do more optimizations.
|
|
|
|
|
2024-04-20 06:19:34 -05:00
|
|
|
//@ test-mir-pass: CopyProp
|
2024-02-22 06:10:29 -06:00
|
|
|
//@ compile-flags: -Zmir-enable-passes=+DeadStoreElimination
|
2023-01-15 09:30:09 -06:00
|
|
|
|
|
|
|
fn id<T>(x: T) -> T {
|
|
|
|
x
|
|
|
|
}
|
|
|
|
|
|
|
|
// EMIT_MIR dead_stores_better.f.CopyProp.after.mir
|
|
|
|
pub fn f(mut a: usize) -> usize {
|
|
|
|
let b = a;
|
|
|
|
a = 5;
|
|
|
|
a = b;
|
|
|
|
id(a)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
f(0);
|
|
|
|
}
|