public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r12-9062] tree-optimization/107554 - fix ICE in stlen optimization
@ 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:ca8b8191983d1a211a718b39ca07e35b8c626416

commit r12-9062-gca8b8191983d1a211a718b39ca07e35b8c626416
Author: Richard Biener <rguenther@suse.de>
Date:   Fri Nov 11 14:28:52 2022 +0100

    tree-optimization/107554 - fix ICE in stlen optimization
    
    The following fixes a wrongly typed variable causing an ICE.
    
            PR tree-optimization/107554
            * tree-ssa-strlen.cc (strlen_pass::count_nonzero_bytes):
            Use unsigned HOST_WIDE_INT type for the strlen.
    
            * gcc.dg/pr107554.c: New testcase.
    
    Co-Authored-By: Nikita Voronov <nik_1357@mail.ru>
    (cherry picked from commit 81de4037454275f8ed6d858fbc129e832c6147ef)

Diff:
---
 gcc/testsuite/gcc.dg/pr107554.c | 12 ++++++++++++
 gcc/tree-ssa-strlen.cc          |  2 +-
 2 files changed, 13 insertions(+), 1 deletion(-)

diff --git a/gcc/testsuite/gcc.dg/pr107554.c b/gcc/testsuite/gcc.dg/pr107554.c
new file mode 100644
index 00000000000..8bbe6b07ae9
--- /dev/null
+++ b/gcc/testsuite/gcc.dg/pr107554.c
@@ -0,0 +1,12 @@
+/* { dg-do compile } */
+/* { dg-options "-O -foptimize-strlen" } */
+
+#define ELEMS 0x40000000
+
+int a[ELEMS];
+int b[ELEMS];
+
+int main()
+{
+  __builtin_memcpy(a, b, ELEMS*sizeof(int));
+}
diff --git a/gcc/tree-ssa-strlen.cc b/gcc/tree-ssa-strlen.cc
index 2d7db6da5bc..cb7ccb41d73 100644
--- a/gcc/tree-ssa-strlen.cc
+++ b/gcc/tree-ssa-strlen.cc
@@ -4700,7 +4700,7 @@ strlen_pass::count_nonzero_bytes (tree exp, gimple *stmt,
 
   /* Compute the number of leading nonzero bytes in the representation
      and update the minimum and maximum.  */
-  unsigned n = prep ? strnlen (prep, nbytes) : nbytes;
+  unsigned HOST_WIDE_INT n = prep ? strnlen (prep, nbytes) : nbytes;
 
   if (n < lenrange[0])
     lenrange[0] = n;

^ 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-9062] tree-optimization/107554 - fix ICE in stlen optimization 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).