Skip to content

Commit 36bbb42

Browse files
committed
Also emit ICE dump files on stable
cf. <#132245> where originally we made it nightly-only in case there was some problems with the ICE dumping infra breaking stable users. However, a good amount of time has since passed and such bugs have not materialized. It was also waiting for cargo gc work, but the timeline of that is unclear. Also note that ICE dumping is already perma-unstable behavior, so if this somehow is problematic it is very easy to revert.
1 parent e6c1e14 commit 36bbb42

File tree

1 file changed

+0
-3
lines changed
  • compiler/rustc_driver_impl/src

1 file changed

+0
-3
lines changed

compiler/rustc_driver_impl/src/lib.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1337,9 +1337,6 @@ fn ice_path_with_config(config: Option<&UnstableOptions>) -> &'static Option<Pat
13371337
}
13381338

13391339
ICE_PATH.get_or_init(|| {
1340-
if !rustc_feature::UnstableFeatures::from_environment(None).is_nightly_build() {
1341-
return None;
1342-
}
13431340
let mut path = match std::env::var_os("RUSTC_ICE") {
13441341
Some(s) => {
13451342
if s == "0" {

0 commit comments

Comments
 (0)