Skip to content

Commit 013c720

Browse files
committed
Auto merge of #3071 - RalfJung:deprecate-disable-abi, r=oli-obk,saethlin
deprecate -Zmiri-disable-abi-check This was added in #1776 but I couldn't find any discussion or motivation.
2 parents 988df79 + f0f762e commit 013c720

File tree

6 files changed

+13
-1
lines changed

6 files changed

+13
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ Some of these are **unsound**, which means they can lead
362362
to Miri failing to detect cases of undefined behavior in a program.
363363

364364
* `-Zmiri-disable-abi-check` disables checking [function ABI]. Using this flag
365-
is **unsound**.
365+
is **unsound**. This flag is **deprecated**.
366366
* `-Zmiri-disable-alignment-check` disables checking pointer alignment, so you
367367
can focus on other failures, but it means Miri can miss bugs in your program.
368368
Using this flag is **unsound**.

src/bin/miri.rs

+4
Original file line numberDiff line numberDiff line change
@@ -358,6 +358,10 @@ fn main() {
358358
since it is now enabled by default"
359359
);
360360
} else if arg == "-Zmiri-disable-abi-check" {
361+
eprintln!(
362+
"WARNING: the flag `-Zmiri-disable-abi-check` is deprecated and planned to be removed.\n\
363+
If you have a use-case for it, please file an issue."
364+
);
361365
miri_config.check_abi = false;
362366
} else if arg == "-Zmiri-disable-isolation" {
363367
if matches!(isolation_enabled, Some(true)) {

tests/fail/concurrency/unwind_top_of_stack.stderr

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
WARNING: the flag `-Zmiri-disable-abi-check` is deprecated and planned to be removed.
2+
If you have a use-case for it, please file an issue.
13
thread '<unnamed>' panicked at $DIR/unwind_top_of_stack.rs:LL:CC:
24
explicit panic
35
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace

tests/fail/function_calls/exported_symbol_bad_unwind1.stderr

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
WARNING: the flag `-Zmiri-disable-abi-check` is deprecated and planned to be removed.
2+
If you have a use-case for it, please file an issue.
13
thread 'main' panicked at $DIR/exported_symbol_bad_unwind1.rs:LL:CC:
24
explicit panic
35
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace

tests/fail/panic/bad_miri_start_panic.stderr

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
WARNING: the flag `-Zmiri-disable-abi-check` is deprecated and planned to be removed.
2+
If you have a use-case for it, please file an issue.
13
error: Undefined Behavior: unwinding past a stack frame that does not allow unwinding
24
--> $DIR/bad_miri_start_panic.rs:LL:CC
35
|
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
WARNING: the flag `-Zmiri-disable-abi-check` is deprecated and planned to be removed.
2+
If you have a use-case for it, please file an issue.

0 commit comments

Comments
 (0)