https://gcc.gnu.org/bugzilla/show_bug.cgi?id=123967

--- Comment #7 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:f0da1fde4dcd1e492c8732d30b0e0559365f4690

commit r17-3752-gf0da1fde4dcd1e492c8732d30b0e0559365f4690
Author: Georg-Johann Lay <[email protected]>
Date:   Sat Aug 29 17:09:57 2026 +0200

    Skip sloppy gcc.dg/tree-ssa/pr123967.c

    This test failed with

    FAIL: gcc.dg/tree-ssa/pr123967.c (test for excess errors)
    Excess errors:
    .../gcc.dg/tree-ssa/pr123967.c:92:11: warning: left shift count >= width of
type [-Wshift-count-overflow]
    .../gcc.dg/tree-ssa/pr123967.c:94:12: warning: left shift count >= width of
type [-Wshift-count-overflow]

    so obviously assuming int32plus.  Fixing typedefs like

       typedef int I32;

    to

       typedef __INT32_TYPE__ I32;

    doesn't do the trick, hence skip if int < 32.

    gcc/testsuite/
            PR testsuite/123967
            * gcc.dg/tree-ssa/pr123967.c: Require int32plus.

Reply via email to