Skip to content

Commit 1d1ae32

Browse files
committed
Auto merge of rust-lang#135439 - clubby789:O3, r=<try>
[EXPERIMENTAL] Make `-O` mean `OptLevel::Aggressive` Just out of curiosity to see if anything is relying on this r? ghost
2 parents 7a202a9 + 99d3f7a commit 1d1ae32

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/rustc_session/src/config.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2097,7 +2097,7 @@ fn parse_opt_level(
20972097
})
20982098
.max();
20992099
if max_o > max_c {
2100-
OptLevel::Default
2100+
OptLevel::Aggressive
21012101
} else {
21022102
match cg.opt_level.as_ref() {
21032103
"0" => OptLevel::No,

0 commit comments

Comments
 (0)