generated from amazon-archives/__template_Apache-2.0
-
Notifications
You must be signed in to change notification settings - Fork 129
Closed as not planned
Labels
[C] Feature / EnhancementA new feature request or enhancement to an existing feature.A new feature request or enhancement to an existing feature.
Description
This is a follow up from the discussion in #3620.
Requested feature: Kani's options to enable/disable overflow:
$ kani --help | grep overflow
--overflow-checks
Turn on default overflow checks
--no-overflow-checks
Turn off default overflow checks
give the impression that they're relevant to all types even though they only control overflow for floating-point types:
kani/kani-driver/src/call_cbmc.rs
Line 193 in c5a4aea
if self.args.checks.overflow_on() { |
We need to either change the option name to float-overflow-checks
or just float-checks
(since it also controls CBMC's --nan-check
) or at least update the help to clarify that the option only applies to floating-point checks.
Metadata
Metadata
Assignees
Labels
[C] Feature / EnhancementA new feature request or enhancement to an existing feature.A new feature request or enhancement to an existing feature.