https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111036
--- Comment #14 from GCC Commits <cvs-commit at gcc dot gnu.org> --- The master branch has been updated by Georg-Johann Lay <[email protected]>: https://gcc.gnu.org/g:83bfd74e630e8920d95998e5925cd8958f31dcce commit r17-3670-g83bfd74e630e8920d95998e5925cd8958f31dcce Author: Georg-Johann Lay <[email protected]> Date: Wed Aug 26 12:13:38 2026 +0200 Fix sloppy PR111036 test case A test case failed with: FAIL: gcc.dg/torture/pr111036.c -O2 -flto -fno-use-linker-plugin -flto-partition=none (test for excess errors) Excess errors: .../pr111036.c:13:25: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] with the obvious reason that is used unsigned long int instead of __UINTPTR_TYPE__. Adjusted accordingly. PR testsuite/111036 gcc/testsuite/ * gcc.dg/torture/pr111036.c (foo): Use __UINTPTR_TYPE__ instead of unsigned long int.
