File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -240,7 +240,8 @@ fn build_clif_sysroot_for_triple(
240
240
rustflags
241
241
. push_str ( & format ! ( " --sysroot={}" , RTSTARTUP_SYSROOT . to_path( dirs) . to_str( ) . unwrap( ) ) ) ;
242
242
if channel == "release" {
243
- rustflags. push_str ( " -Zmir-opt-level=3" ) ;
243
+ // FIXME re-enable DataflowConstProp once rust-lang/rust#108166 is fixed
244
+ rustflags. push_str ( " -Zmir-opt-level=3 -Zmir-enable-passes=-DataflowConstProp" ) ;
244
245
}
245
246
compiler. rustflags += & rustflags;
246
247
let mut build_cmd = STANDARD_LIBRARY . build ( & compiler, dirs) ;
Original file line number Diff line number Diff line change 1
1
[toolchain]
2
- channel = "nightly-2023-02-15 "
2
+ channel = "nightly-2023-02-16 "
3
3
components = ["rust-src", "rustc-dev", "llvm-tools-preview"]
You can’t perform that action at this time.
0 commit comments