aboutsummaryrefslogtreecommitdiff
path: root/gcc/analyzer
diff options
context:
space:
mode:
authorGCC Administrator <gccadmin@gcc.gnu.org>2020-08-23 00:16:25 +0000
committerGCC Administrator <gccadmin@gcc.gnu.org>2020-08-23 00:16:25 +0000
commite769f9707d6f1e2c6dc9e8197119634ff2c44b76 (patch)
treec2e7906ed8b02bb20d00e669ba4af399bb9a7d71 /gcc/analyzer
parentdf2b78d407a3fe8685343f7249b9c31c7e3af44d (diff)
downloadgcc-e769f9707d6f1e2c6dc9e8197119634ff2c44b76.zip
gcc-e769f9707d6f1e2c6dc9e8197119634ff2c44b76.tar.gz
gcc-e769f9707d6f1e2c6dc9e8197119634ff2c44b76.tar.bz2
Daily bump.
Diffstat (limited to 'gcc/analyzer')
-rw-r--r--gcc/analyzer/ChangeLog21
1 files changed, 21 insertions, 0 deletions
diff --git a/gcc/analyzer/ChangeLog b/gcc/analyzer/ChangeLog
index d20e8c7..1b59ff3 100644
--- a/gcc/analyzer/ChangeLog
+++ b/gcc/analyzer/ChangeLog
@@ -1,3 +1,24 @@
+2020-08-22 David Malcolm <dmalcolm@redhat.com>
+
+ PR analyzer/94851
+ * region-model-manager.cc
+ (region_model_manager::maybe_fold_binop): Fold bitwise "& 0" to 0.
+
+2020-08-22 David Malcolm <dmalcolm@redhat.com>
+
+ * store.cc (store::eval_alias): Make const. Split out 2nd half
+ into store::eval_alias_1 and call it twice for symmetry, avoiding
+ test duplication.
+ (store::eval_alias_1): New function, split out from the above.
+ * store.h (store::eval_alias): Make const.
+ (store::eval_alias_1): New decl.
+
+2020-08-22 David Malcolm <dmalcolm@redhat.com>
+
+ * region-model.cc (region_model::push_frame): Bind the default
+ SSA name for each parm if it exists, falling back to the parm
+ itself otherwise, rather than doing both.
+
2020-08-20 David Malcolm <dmalcolm@redhat.com>
PR analyzer/96723