public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r12-9063] middle-end/107994 - ICE after error with comparison gimplification
@ 2023-01-24 14:27 Richard Biener
  0 siblings, 0 replies; only message in thread
From: Richard Biener @ 2023-01-24 14:27 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:45cff68d063b689bd6a9f30827b1fdd3f5ea2cb4

commit r12-9063-g45cff68d063b689bd6a9f30827b1fdd3f5ea2cb4
Author: Richard Biener <rguenther@suse.de>
Date:   Wed Dec 21 12:27:58 2022 +0100

    middle-end/107994 - ICE after error with comparison gimplification
    
    The following avoids passing down error_mark_node to fold_convert.
    
            PR middle-end/107994
            * gimplify.cc (gimplify_expr): Catch errorneous comparison
            operand.
    
    (cherry picked from commit 845b514e8a150447ba041294586af76a6ac05158)

Diff:
---
 gcc/gimplify.cc | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/gcc/gimplify.cc b/gcc/gimplify.cc
index 2588824dce2..a3aa90262c5 100644
--- a/gcc/gimplify.cc
+++ b/gcc/gimplify.cc
@@ -15832,6 +15832,9 @@ gimplify_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
 		 Compare scalar mode aggregates as scalar mode values.  Using
 		 memcmp for them would be very inefficient at best, and is
 		 plain wrong if bitfields are involved.  */
+	      if (error_operand_p (TREE_OPERAND (*expr_p, 1)))
+		ret = GS_ERROR;
+	      else
 		{
 		  tree type = TREE_TYPE (TREE_OPERAND (*expr_p, 1));
 
@@ -15856,9 +15859,8 @@ gimplify_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
 		    ret = gimplify_scalar_mode_aggregate_compare (expr_p);
 		  else
 		    ret = gimplify_variable_sized_compare (expr_p);
-
-		  break;
 		}
+	      break;
 
 	    /* If *EXPR_P does not need to be special-cased, handle it
 	       according to its class.  */

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

only message in thread, other threads:[~2023-01-24 14:27 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-24 14:27 [gcc r12-9063] middle-end/107994 - ICE after error with comparison gimplification Richard Biener

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).