We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f349be commit d4a2c48Copy full SHA for d4a2c48
compiler/rustc_mir/src/transform/dest_prop.rs
@@ -132,9 +132,9 @@ impl<'tcx> MirPass<'tcx> for DestinationPropagation {
132
return;
133
}
134
135
- // Only run at mir-opt-level=3 or higher for now (we don't fix up debuginfo and remove
+ // Only run at mir-opt-level=2 or higher for now (we don't fix up debuginfo and remove
136
// storage statements at the moment).
137
- if tcx.sess.mir_opt_level() < 3 {
+ if tcx.sess.mir_opt_level() < 2 {
138
139
140
0 commit comments