diff options
| author | bors <bors@rust-lang.org> | 2024-01-05 12:34:00 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2024-01-05 12:34:00 +0000 |
| commit | 6bc08a725f888a06ea3c6844f3d0cc2d2ebc5142 (patch) | |
| tree | 4f93fdaecda5d73047d62044e6d3ff75fcfcff79 /compiler/rustc_session/src | |
| parent | 8d39ec1825024f3014e1f847942ac5bbfcf055b0 (diff) | |
| parent | 7832ebbd4ff090aced6e338ff92e1353bbe88f76 (diff) | |
| download | rust-6bc08a725f888a06ea3c6844f3d0cc2d2ebc5142.tar.gz rust-6bc08a725f888a06ea3c6844f3d0cc2d2ebc5142.zip | |
Auto merge of #117673 - matthewjasper:thir-unsafeck-stabilization, r=cjgillot
Stabilize THIR unsafeck - Removes `-Zthir-unsafeck`, stabilizing the behaviour of `-Zthir-unsafeck=on`. - Removes MIR unsafeck. - Union patterns are now unsafe unless the field is matched to a wildcard pattern. Opening for a crater run in case we need a compatibility lint.
Diffstat (limited to 'compiler/rustc_session/src')
| -rw-r--r-- | compiler/rustc_session/src/options.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_session/src/options.rs b/compiler/rustc_session/src/options.rs index 8274fd05bc0..0b0b67ef890 100644 --- a/compiler/rustc_session/src/options.rs +++ b/compiler/rustc_session/src/options.rs @@ -1919,8 +1919,8 @@ written to standard error output)"), #[rustc_lint_opt_deny_field_access("use `Session::lto` instead of this field")] thinlto: Option<bool> = (None, parse_opt_bool, [TRACKED], "enable ThinLTO when possible"), - thir_unsafeck: bool = (false, parse_bool, [TRACKED], - "use the THIR unsafety checker (default: no)"), + thir_unsafeck: bool = (true, parse_bool, [TRACKED], + "use the THIR unsafety checker (default: yes)"), /// We default to 1 here since we want to behave like /// a sequential compiler for now. This'll likely be adjusted /// in the future. Note that -Zthreads=0 is the way to get |
