public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r13-3075] analyzer: fold -(-(VAL)) to VAL
@ 2022-10-05  0:20 David Malcolm
  0 siblings, 0 replies; only message in thread
From: David Malcolm @ 2022-10-05  0:20 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:7f42f7adfa69fea029fbb76286048f712bb017ff

commit r13-3075-g7f42f7adfa69fea029fbb76286048f712bb017ff
Author: David Malcolm <dmalcolm@redhat.com>
Date:   Tue Oct 4 20:19:06 2022 -0400

    analyzer: fold -(-(VAL)) to VAL
    
    gcc/analyzer/ChangeLog:
            * region-model-manager.cc
            (region_model_manager::maybe_fold_unaryop): Fold -(-(VAL)) to VAL.
    
    Signed-off-by: David Malcolm <dmalcolm@redhat.com>

Diff:
---
 gcc/analyzer/region-model-manager.cc | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/gcc/analyzer/region-model-manager.cc b/gcc/analyzer/region-model-manager.cc
index ed5b9c75910..1956cfc3e8d 100644
--- a/gcc/analyzer/region-model-manager.cc
+++ b/gcc/analyzer/region-model-manager.cc
@@ -432,6 +432,17 @@ region_model_manager::maybe_fold_unaryop (tree type, enum tree_code op,
 	    }
       }
       break;
+    case NEGATE_EXPR:
+      {
+	/* -(-(VAL)) is VAL, for integer types.  */
+	if (const unaryop_svalue *unaryop = arg->dyn_cast_unaryop_svalue ())
+	  if (unaryop->get_op () == NEGATE_EXPR
+	      && type == unaryop->get_type ()
+	      && type
+	      && INTEGRAL_TYPE_P (type))
+	    return unaryop->get_arg ();
+      }
+      break;
     }
 
   /* Constants.  */

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-10-05  0:20 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-05  0:20 [gcc r13-3075] analyzer: fold -(-(VAL)) to VAL David Malcolm

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).