Skip to content

Commit c8b947a

Browse files
committed
Use alphabetical order for miri flags
1 parent 5e26cda commit c8b947a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -265,10 +265,6 @@ environment variable:
265265
* `-Zmiri-disable-isolation` disables host isolation. As a consequence,
266266
the program has access to host resources such as environment variables, file
267267
systems, and randomness.
268-
* `-Zmiri-mute-stdout-stderr` silently ignores all writes to stdout and stderr,
269-
but reports to the program that it did actually write. This is useful when you
270-
are not interested in the actual program's messages, but only want to see miri's
271-
errors and warnings.
272268
* `-Zmiri-isolation-error=<action>` configures Miri's response to operations
273269
requiring host access while isolation is enabled. `abort`, `hide`, `warn`,
274270
and `warn-nobacktrace` are the supported actions. The default is to `abort`,
@@ -290,6 +286,10 @@ environment variable:
290286
This can be used to find which parts of your program are executing slowly under Miri.
291287
The profile is written out to a file with the prefix `<name>`, and can be processed
292288
using the tools in the repository https://github.com/rust-lang/measureme.
289+
* `-Zmiri-mute-stdout-stderr` silently ignores all writes to stdout and stderr,
290+
but reports to the program that it did actually write. This is useful when you
291+
are not interested in the actual program's messages, but only want to see miri's
292+
errors and warnings.
293293
* `-Zmiri-panic-on-unsupported` will makes some forms of unsupported functionality,
294294
such as FFI and unsupported syscalls, panic within the context of the emulated
295295
application instead of raising an error within the context of Miri (and halting

0 commit comments

Comments
 (0)