Skip to content

Commit

Permalink
Auto merge of rust-lang#119440 - Nilstrieb:overflow-checks, r=<try>
Browse files Browse the repository at this point in the history
[perf experiment] Enable overflow checks for not-std

r? `@ghost`
  • Loading branch information
bors committed Dec 30, 2023
2 parents d59f06f + e94ce10 commit fe8f664
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bootstrap/src/core/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1760,7 +1760,7 @@ impl<'a> Builder<'a> {
if mode == Mode::Std {
self.config.rust_overflow_checks_std.to_string()
} else {
self.config.rust_overflow_checks.to_string()
"true".into()
},
);

Expand Down

0 comments on commit fe8f664

Please sign in to comment.