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

            Bug ID: 108061
           Summary: '-fcompare-debug' failure (length) w/ -m32 -O2
           Product: gcc
           Version: 13.0
            Status: UNCONFIRMED
          Keywords: compare-debug-failure
          Severity: normal
          Priority: P3
         Component: debug
          Assignee: unassigned at gcc dot gnu.org
          Reporter: asolokha at gmx dot com
  Target Milestone: ---
            Target: powerpc-e300c3-linux-gnu

Created attachment 54065
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=54065&action=edit
gkd diff

gcc 13.0.0 20221204 snapshot (g:24b9337d1f1b5197b6498dceb9074319be003449) fails
-fcompare-debug check when compiling the following testcase w/ -m32 -O2
-fcompare-debug:

volatile unsigned short int m;
volatile signed short int n;

int
sub (int x, int y)
{
  return x - y;
}

unsigned int
quux (int x)
{
  return x ? x : 1;
}

int
bar (int x, int y)
{
  return sub (n < x, quux (y) + 1);
}

int
foo (int x)
{
  return bar (m, quux (3));
}

% powerpc-e300c3-linux-gnu-gcc-13 -m32 -O2 -fcompare-debug -c ndat8d3d.c
powerpc-e300c3-linux-gnu-gcc-13: error: ndat8d3d.c: '-fcompare-debug' failure
(length)

gkd diff attached.

Reply via email to