]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Avoid shorten_binary_op on VECTOR_TYPE
authorRichard Biener <rguenther@suse.de>
Fri, 23 Jun 2023 08:01:38 +0000 (10:01 +0200)
committerRichard Biener <rguenther@suse.de>
Mon, 26 Jun 2023 11:02:35 +0000 (13:02 +0200)
When we disallow TYPE_PRECISION on VECTOR_TYPEs it shows that
shorten_binary_op performs some checks on that that are likely
harmless in the end.  The following bails out early for
VECTOR_TYPE operations to avoid those questionable checks.

gcc/c-family/
* c-common.cc (shorten_binary_op): Exit early for VECTOR_TYPE
operations.

gcc/c-family/c-common.cc

index 9c8eed5442a453c709527f7e114318b63591e748..34566a342bd58dfdd2d480fb3c1279a7606ac59e 100644 (file)
@@ -1338,6 +1338,10 @@ shorten_binary_op (tree result_type, tree op0, tree op1, bool bitwise)
   int uns;
   tree type;
 
+  /* Do not shorten vector operations.  */
+  if (VECTOR_TYPE_P (result_type))
+    return result_type;
+
   /* Cast OP0 and OP1 to RESULT_TYPE.  Doing so prevents
      excessive narrowing when we call get_narrower below.  For
      example, suppose that OP0 is of unsigned int extended