https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119318
--- Comment #13 from GCC 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:ebdf92b6067a357e7bb08bfde294cc19b50e6abb commit r15-9459-gebdf92b6067a357e7bb08bfde294cc19b50e6abb Author: Jakub Jelinek <ja...@redhat.com> Date: Mon Apr 14 19:35:20 2025 +0200 testsuite: Fix up ipa/pr119530.c testcase [PR119318] I'm seeing +FAIL: gcc.dg/ipa/pr119530.c execution test on i686-linux. The problem is that when long is just 32-bit and so is unsigned, the testcase then behaves differently and should abort. Fixed by making the argument long long instead. While at it, just in case I've changed type of d variable to signed char as well just in case there is -funsigned-char 8-bit int target or something similar. 2025-04-14 Jakub Jelinek <ja...@redhat.com> PR ipa/119318 * gcc.dg/ipa/pr119530.c (d): Change type from char to signed char. (e): Change argument type from long to long long.