Skip to content

Commit 8ed6baa

Browse files
committed
Rustup to rustc 1.69.0-nightly (2d14db321 2023-02-15)
1 parent 9491031 commit 8ed6baa

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

build_system/build_sysroot.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,8 @@ fn build_clif_sysroot_for_triple(
240240
rustflags
241241
.push_str(&format!(" --sysroot={}", RTSTARTUP_SYSROOT.to_path(dirs).to_str().unwrap()));
242242
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");
244245
}
245246
compiler.rustflags += &rustflags;
246247
let mut build_cmd = STANDARD_LIBRARY.build(&compiler, dirs);

rust-toolchain

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[toolchain]
2-
channel = "nightly-2023-02-15"
2+
channel = "nightly-2023-02-16"
33
components = ["rust-src", "rustc-dev", "llvm-tools-preview"]

0 commit comments

Comments
 (0)