https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106070
--- Comment #11 from CVS Commits <cvs-commit at gcc dot gnu.org> --- The master branch has been updated by Jakub Jelinek <ja...@gcc.gnu.org>: https://gcc.gnu.org/g:00063459f683adcd92ada8325984e6b10e9f7a95 commit r13-1299-g00063459f683adcd92ada8325984e6b10e9f7a95 Author: Jakub Jelinek <ja...@redhat.com> Date: Mon Jun 27 15:35:25 2022 +0200 testsuite: Fix up pr106070.c test [PR106070] The test FAILs on 32-bit targets, because when unsigned long is 32-bit, (unsigned long) -1 isn't 0xffffffffffffffff. The options to fix this would be either using -1UL, or switch to unsigned long long and using -1ULL, I chose the latter because the test then FAILs in r13-1242 even on 32-bit targets. And while at it, some deobfuscation and formatting tweaks. 2022-06-27 Jakub Jelinek <ja...@redhat.com> PR tree-optimization/106070 * gcc.dg/torture/pr106070.c: Use unsigned long long instead of unsigned long and -1ULL instead of 0xffffffffffffffff, deobcuscate and improve formatting.