Rustup to rustc 1.69.0-nightly (2d14db321 2023-02-15)

This commit is contained in:
bjorn3 2023-02-17 18:28:12 +01:00
parent 9491031f9a
commit 8ed6baa749
2 changed files with 3 additions and 2 deletions

View File

@ -240,7 +240,8 @@ fn build_clif_sysroot_for_triple(
rustflags
.push_str(&format!(" --sysroot={}", RTSTARTUP_SYSROOT.to_path(dirs).to_str().unwrap()));
if channel == "release" {
rustflags.push_str(" -Zmir-opt-level=3");
// FIXME re-enable DataflowConstProp once rust-lang/rust#108166 is fixed
rustflags.push_str(" -Zmir-opt-level=3 -Zmir-enable-passes=-DataflowConstProp");
}
compiler.rustflags += &rustflags;
let mut build_cmd = STANDARD_LIBRARY.build(&compiler, dirs);

View File

@ -1,3 +1,3 @@
[toolchain]
channel = "nightly-2023-02-15"
channel = "nightly-2023-02-16"
components = ["rust-src", "rustc-dev", "llvm-tools-preview"]