sort flags alphabetically

This commit is contained in:
Ralf Jung 2023-03-18 11:21:09 +01:00
parent 5a0d2576e2
commit c3780602ec

View file

@ -126,9 +126,9 @@ pub use crate::tag_gc::{EvalContextExt as _, VisitTags};
/// Insert rustc arguments at the beginning of the argument list that Miri wants to be
/// set per default, for maximal validation power.
pub const MIRI_DEFAULT_ARGS: &[&str] = &[
"--cfg=miri",
"-Zalways-encode-mir",
"-Zextra-const-ub-checks",
"-Zmir-emit-retag",
"-Zmir-opt-level=0",
"--cfg=miri",
"-Zextra-const-ub-checks",
];