summaryrefslogtreecommitdiff
path: root/gcc/analyzer
diff options
context:
space:
mode:
authorDavid Malcolm <dmalcolm@redhat.com>2020-02-10 16:04:13 -0500
committerDavid Malcolm <dmalcolm@redhat.com>2020-02-10 18:05:23 -0500
commiteb031d4ba27b3fdc292f5a1092e66024f5ee239c (patch)
treec010c9a3c12f80f2fcd2edba91c2bd93a4158d25 /gcc/analyzer
parente87deb37649cfe480217fc83c8d56fe925600f93 (diff)
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.
Diffstat (limited to 'gcc/analyzer')
-rw-r--r--gcc/analyzer/ChangeLog8
-rw-r--r--gcc/analyzer/analyzer.opt4
2 files changed, 10 insertions, 2 deletions
diff --git a/gcc/analyzer/ChangeLog b/gcc/analyzer/ChangeLog
index e3f7c43948a..4dace2d16c8 100644
--- a/gcc/analyzer/ChangeLog
+++ b/gcc/analyzer/ChangeLog
@@ -1,5 +1,13 @@
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
* region-model.cc (region_model::get_lvalue_1):
Handle BIT_FIELD_REF.
diff --git a/gcc/analyzer/analyzer.opt b/gcc/analyzer/analyzer.opt
index af8d81d697a..7d40c88ed1a 100644
--- a/gcc/analyzer/analyzer.opt
+++ b/gcc/analyzer/analyzer.opt
@@ -32,7 +32,7 @@ The maximum number of exploded nodes per program point within the analyzer, befo
-param=analyzer-max-recursion-depth=
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=
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.
Wanalyzer-use-of-uninitialized-value
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
Common Var(warn_analyzer_too_complex) Init(0) Warning