Commit eb031d4b by David Malcolm

analyzer.opt: fix typos in descriptions (PR 93659)

gcc/analyzer/ChangeLog:
	PR analyzer/93659
	* analyzer.opt (-param=analyzer-max-recursion-depth=): Fix "tha"
	-> "that" typo.
	(Wanalyzer-use-of-uninitialized-value): Fix "initialized" ->
	"uninitialized" typo.
parent e87deb37
2020-02-10 David Malcolm <dmalcolm@redhat.com> 2020-02-10 David Malcolm <dmalcolm@redhat.com>
PR analyzer/93659
* analyzer.opt (-param=analyzer-max-recursion-depth=): Fix "tha"
-> "that" typo.
(Wanalyzer-use-of-uninitialized-value): Fix "initialized" ->
"uninitialized" typo.
2020-02-10 David Malcolm <dmalcolm@redhat.com>
PR analyzer/93350 PR analyzer/93350
* region-model.cc (region_model::get_lvalue_1): * region-model.cc (region_model::get_lvalue_1):
Handle BIT_FIELD_REF. Handle BIT_FIELD_REF.
......
...@@ -32,7 +32,7 @@ The maximum number of exploded nodes per program point within the analyzer, befo ...@@ -32,7 +32,7 @@ The maximum number of exploded nodes per program point within the analyzer, befo
-param=analyzer-max-recursion-depth= -param=analyzer-max-recursion-depth=
Common Joined UInteger Var(param_analyzer_max_recursion_depth) Init(2) Param Common Joined UInteger Var(param_analyzer_max_recursion_depth) Init(2) Param
The maximum number of times a callsite can appear in a call stack within the analyzer, before terminating analysis of a call tha would recurse deeper. The maximum number of times a callsite can appear in a call stack within the analyzer, before terminating analysis of a call that would recurse deeper.
-param=analyzer-min-snodes-for-call-summary= -param=analyzer-min-snodes-for-call-summary=
Common Joined UInteger Var(param_analyzer_min_snodes_for_call_summary) Init(10) Param Common Joined UInteger Var(param_analyzer_min_snodes_for_call_summary) Init(10) Param
...@@ -100,7 +100,7 @@ Warn about code paths in which a pointer to a stale stack frame is used. ...@@ -100,7 +100,7 @@ Warn about code paths in which a pointer to a stale stack frame is used.
Wanalyzer-use-of-uninitialized-value Wanalyzer-use-of-uninitialized-value
Common Var(warn_analyzer_use_of_uninitialized_value) Init(1) Warning Common Var(warn_analyzer_use_of_uninitialized_value) Init(1) Warning
Warn about code paths in which an initialized value is used. Warn about code paths in which an uninitialized value is used.
Wanalyzer-too-complex Wanalyzer-too-complex
Common Var(warn_analyzer_too_complex) Init(0) Warning Common Var(warn_analyzer_too_complex) Init(0) Warning
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment