https://gcc.gnu.org/g:910cae8843248fc7af6468c7ae777568d5f36e12

commit r16-7542-g910cae8843248fc7af6468c7ae777568d5f36e12
Author: Richard Biener <[email protected]>
Date:   Tue Feb 17 09:32:22 2026 +0100

    Fixup types in gcc.dg/torture/ssa-fre-7.c
    
    The testcase was only partly updated to use __SIZETYPE__, the
    following fixes the remains.
    
            * gcc.dg/torture/ssa-fre-7.c: Properly use __SIZETYPE__
            where required.

Diff:
---
 gcc/testsuite/gcc.dg/torture/ssa-fre-7.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gcc/testsuite/gcc.dg/torture/ssa-fre-7.c 
b/gcc/testsuite/gcc.dg/torture/ssa-fre-7.c
index daf770a45c92..a4edb1f2d966 100644
--- a/gcc/testsuite/gcc.dg/torture/ssa-fre-7.c
+++ b/gcc/testsuite/gcc.dg/torture/ssa-fre-7.c
@@ -18,8 +18,8 @@ foo (int c)
 
   __BB(2):
   i_3 = 0;
-  _1 = (long unsigned int) i_3;
-  _2 = _1 * 4ul;
+  _1 = (__SIZETYPE__) i_3;
+  _2 = _1 * _Literal (__SIZETYPE__) 4;
   p_4 = _Literal (int *) &x + _2;
   _6 = _Literal (v4si) { c_5(D), c_5(D), c_5(D), c_5(D) };
   __MEM <v4si> ((v4si *)p_4) = _6;

Reply via email to