public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug tree-optimization/58832] New: wrong code at -O2 and -O3 on x86_64-linux-gnu in 64-bit mode
@ 2013-10-22  1:38 su at cs dot ucdavis.edu
  2013-10-23  8:18 ` [Bug tree-optimization/58832] [4.9 Regression] " rguenth at gcc dot gnu.org
  2013-10-25 10:14 ` rguenth at gcc dot gnu.org
  0 siblings, 2 replies; 3+ messages in thread
From: su at cs dot ucdavis.edu @ 2013-10-22  1:38 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58832

            Bug ID: 58832
           Summary: wrong code at -O2 and -O3 on x86_64-linux-gnu in
                    64-bit mode
           Product: gcc
           Version: 4.9.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: tree-optimization
          Assignee: unassigned at gcc dot gnu.org
          Reporter: su at cs dot ucdavis.edu

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;
}


^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Bug tree-optimization/58832] [4.9 Regression] wrong code at -O2 and -O3 on x86_64-linux-gnu in 64-bit mode
  2013-10-22  1:38 [Bug tree-optimization/58832] New: wrong code at -O2 and -O3 on x86_64-linux-gnu in 64-bit mode su at cs dot ucdavis.edu
@ 2013-10-23  8:18 ` rguenth at gcc dot gnu.org
  2013-10-25 10:14 ` rguenth at gcc dot gnu.org
  1 sibling, 0 replies; 3+ messages in thread
From: rguenth at gcc dot gnu.org @ 2013-10-23  8:18 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58832

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2013-10-23
   Target Milestone|---                         |4.9.0
            Summary|wrong code at -O2 and -O3   |[4.9 Regression] wrong code
                   |on x86_64-linux-gnu in      |at -O2 and -O3 on
                   |64-bit mode                 |x86_64-linux-gnu in 64-bit
                   |                            |mode
     Ever confirmed|0                           |1

--- Comment #1 from Richard Biener <rguenth at gcc dot gnu.org> ---
Confirmed.


^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Bug tree-optimization/58832] [4.9 Regression] wrong code at -O2 and -O3 on x86_64-linux-gnu in 64-bit mode
  2013-10-22  1:38 [Bug tree-optimization/58832] New: wrong code at -O2 and -O3 on x86_64-linux-gnu in 64-bit mode su at cs dot ucdavis.edu
  2013-10-23  8:18 ` [Bug tree-optimization/58832] [4.9 Regression] " rguenth at gcc dot gnu.org
@ 2013-10-25 10:14 ` rguenth at gcc dot gnu.org
  1 sibling, 0 replies; 3+ messages in thread
From: rguenth at gcc dot gnu.org @ 2013-10-25 10:14 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58832

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |DUPLICATE

--- Comment #2 from Richard Biener <rguenth at gcc dot gnu.org> ---
Loads of dups ... ;)

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


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2013-10-25 10:14 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-10-22  1:38 [Bug tree-optimization/58832] New: wrong code at -O2 and -O3 on x86_64-linux-gnu in 64-bit mode su at cs dot ucdavis.edu
2013-10-23  8:18 ` [Bug tree-optimization/58832] [4.9 Regression] " rguenth at gcc dot gnu.org
2013-10-25 10:14 ` rguenth at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).