-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Allow -Z treat-err-as-bug=0
#115690
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow -Z treat-err-as-bug=0
#115690
Conversation
(rustbot has picked a reviewer for you, use r? to override) |
I tried another wording for the option's description, but it's kinda verbose now. @rustbot review |
r=me after squashing commits. |
Co-authored-by: Vadim Petrochenkov <vadim.petrochenkov@gmail.com>
90f3d3a
to
3dd0419
Compare
@bors r+ |
☀️ Test successful - checks-actions |
Finished benchmarking commit (0190394): comparison URL. Overall result: no relevant changes - no action needed@rustbot label: -perf-regression Instruction countThis benchmark run did not return any relevant results for this metric. Max RSS (memory usage)ResultsThis is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
CyclesResultsThis is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
Binary sizeThis benchmark run did not return any relevant results for this metric. Bootstrap: 634.55s -> 633.528s (-0.16%) |
Makes
-Z treat-err-as-bug=0
behave as if the option wasn't present instead of asking the value to be ⩾ 1. This enables a quick on/off of the option, as you only need to change one character instead of removing the whole-Z
.Also update some text, e.g.
where the value could be interpreted as an error code instead of an ordinal.