Skip to content

Commit b109091

Browse files
committed
remove some flags that have been hard errors for a while
1 parent 2de4561 commit b109091

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

Diff for: src/tools/miri/src/bin/miri.rs

-9
Original file line numberDiff line numberDiff line change
@@ -549,11 +549,6 @@ fn main() {
549549
miri_config.check_alignment = miri::AlignmentCheck::None;
550550
} else if arg == "-Zmiri-symbolic-alignment-check" {
551551
miri_config.check_alignment = miri::AlignmentCheck::Symbolic;
552-
} else if arg == "-Zmiri-disable-abi-check" {
553-
eprintln!(
554-
"WARNING: the flag `-Zmiri-disable-abi-check` no longer has any effect; \
555-
ABI checks cannot be disabled any more"
556-
);
557552
} else if arg == "-Zmiri-disable-isolation" {
558553
if matches!(isolation_enabled, Some(true)) {
559554
show_error!(
@@ -623,10 +618,6 @@ fn main() {
623618
many_seeds = Some(0..64);
624619
} else if arg == "-Zmiri-many-seeds-keep-going" {
625620
many_seeds_keep_going = true;
626-
} else if let Some(_param) = arg.strip_prefix("-Zmiri-env-exclude=") {
627-
show_error!(
628-
"`-Zmiri-env-exclude` has been removed; unset env vars before starting Miri instead"
629-
);
630621
} else if let Some(param) = arg.strip_prefix("-Zmiri-env-forward=") {
631622
miri_config.forwarded_env_vars.push(param.to_owned());
632623
} else if let Some(param) = arg.strip_prefix("-Zmiri-env-set=") {

0 commit comments

Comments
 (0)