The testcase was only partly updated to use __SIZETYPE__, the
following fixes the remains.
Tested on x86_64-unknown-linux-gnu, pushed.
* gcc.dg/torture/ssa-fre-7.c: Properly use __SIZETYPE__
where required.
---
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 daf770a45c9..a4edb1f2d96 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;
--
2.51.0