Bug 58832 - [4.9 Regression] wrong code at -O2 and -O3 on x86_64-linux-gnu in 64-bit mode
Summary: [4.9 Regression] wrong code at -O2 and -O3 on x86_64-linux-gnu in 64-bit mode
Status: RESOLVED DUPLICATE of bug 58831
Alias: None
Product: gcc
Classification: Unclassified
Component: tree-optimization (show other bugs)
Version: 4.9.0
: P3 normal
Target Milestone: 4.9.0
Assignee: Not yet assigned to anyone
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-10-22 01:38 UTC by Zhendong Su
Modified: 2013-10-25 10:14 UTC (History)
0 users

See Also:
Host:
Target:
Build:
Known to work:
Known to fail:
Last reconfirmed: 2013-10-23 00:00:00


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Zhendong Su 2013-10-22 01:38:32 UTC
The current gcc trunk miscompiles the following code on x86_64-linux at -O2 and -O3 in 64-bit mode. 

This is a regression from 4.8.x and may be related to 58831, which also affects gcc 4.8.x though. 

$ gcc-trunk -v
Using built-in specs.
COLLECT_GCC=gcc-trunk
COLLECT_LTO_WRAPPER=/usr/local/gcc-trunk/libexec/gcc/x86_64-unknown-linux-gnu/4.9.0/lto-wrapper
Target: x86_64-unknown-linux-gnu
Configured with: ../gcc-trunk/configure --enable-languages=c,c++,objc,obj-c++,fortran,lto --disable-werror --enable-checking=release --with-gmp=/usr/local/gcc-trunk --with-mpfr=/usr/local/gcc-trunk --with-mpc=/usr/local/gcc-trunk --with-cloog=/usr/local/gcc-trunk --prefix=/usr/local/gcc-trunk
Thread model: posix
gcc version 4.9.0 20131021 (experimental) [trunk revision 203907] (GCC) 
$ 
$ gcc-trunk -m64 -O1 small.c; a.out
$ gcc-trunk -m32 -O2 small.c; a.out
$ gcc-4.8.2 -m64 -O2 small.c; a.out
$ gcc-4.7.3 -m64 -O2 small.c; a.out
$ 
$ gcc-trunk -m64 -O2 small.c; a.out
a.out: small.c:9: fn1: Assertion `d || (1 & e)' failed.
Aborted (core dumped)
$ gcc-trunk -m64 -O3 small.c; a.out
a.out: small.c:9: fn1: Assertion `d || (1 & e)' failed.
Aborted (core dumped)
$ 
$ 


---------------------------------


#include<assert.h>

int a, b, c, *d, e, g;

void
fn1 (int *p1, int **p2)
{
  *p2 = &g;
  assert (d || (1 & e));
}

static int **
fn2 ()
{
  int *f = &b;
  for (; c; c--)
    f = 0;
  assert(a || f);
  return 0;
}

static unsigned short
fn3 ()
{
  fn2 ();
  fn1 (0, &d);
  return 0;
}


int
main ()
{
  fn2 ();
  fn3 ();
  return 0;
}
Comment 1 Richard Biener 2013-10-23 08:18:39 UTC
Confirmed.
Comment 2 Richard Biener 2013-10-25 10:14:23 UTC
Loads of dups ... ;)

*** This bug has been marked as a duplicate of bug 58831 ***