Skip to content
Snippets Groups Projects
Commit 7349a8e6 authored by David Bühler's avatar David Bühler
Browse files

[Eva] Fixes the help message of -eva-warn-copy-indeterminate option.

parent d80e4a34
No related branches found
No related tags found
No related merge requests found
......@@ -495,10 +495,12 @@ module WarnCopyIndeterminate =
(struct
let option_name = "-eva-warn-copy-indeterminate"
let arg_name = "f | @all"
let help = "Warn when a statement of the specified functions copies a \
value that may be indeterminate (uninitialized or containing \
escaping address). Set by default; can be deactivated for \
function 'f' by '=-f', or for all functions by '=-@all'."
let help =
"Warn when a statement copies a value that may be indeterminate \
(uninitialized, containing an escaping address, or infinite/NaN \
floating-point value). \
Set by default; can be deactivated for function 'f' by '=-f', \
or for all functions by '=-@all'."
end)
let () = add_correctness_dep WarnCopyIndeterminate.parameter
let () = WarnCopyIndeterminate.Category.(set_default (all ()))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment