Skip to content

Commit

Permalink
Rustup to rustc 1.69.0-nightly (2d14db3 2023-02-15)
Browse files Browse the repository at this point in the history
  • Loading branch information
bjorn3 committed Feb 17, 2023
1 parent 9491031 commit 8ed6baa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion build_system/build_sysroot.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[toolchain]
channel = "nightly-2023-02-15"
channel = "nightly-2023-02-16"
components = ["rust-src", "rustc-dev", "llvm-tools-preview"]

0 comments on commit 8ed6baa

Please sign in to comment.