From 41c02eeb309b3be58683be8f9961f3894b6fb4c7 Mon Sep 17 00:00:00 2001 From: Richard Biener Date: Tue, 28 Feb 2023 11:36:01 +0100 Subject: [PATCH] testsuite/108942 - use sizetype in GIMPLE FE testcase The following properly uses __SIZETYPE__ for pointer offsets. PR testsuite/108942 * gcc.dg/torture/ssa-fre-7.c: Use __SIZETYPE__. --- 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 c9259b4ddaa0..daf770a45c92 100644 --- a/gcc/testsuite/gcc.dg/torture/ssa-fre-7.c +++ b/gcc/testsuite/gcc.dg/torture/ssa-fre-7.c @@ -11,8 +11,8 @@ foo (int c) int * p; int i; int x[4]; - long unsigned int _1; - long unsigned int _2; + __SIZETYPE__ _1; + __SIZETYPE__ _2; int _7; v4si _6; -- 2.47.2