public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/30332]  New: bit-field: optimization BUG?
@ 2006-12-30  8:21 s__nakayama at infoseek dot jp
  2006-12-30  8:28 ` [Bug c++/30332] " pinskia at gcc dot gnu dot org
                   ` (10 more replies)
  0 siblings, 11 replies; 12+ messages in thread
From: s__nakayama at infoseek dot jp @ 2006-12-30  8:21 UTC (permalink / raw)
  To: gcc-bugs

The output is different by the optimization.

testcase:
#include <stdio.h>

struct S
{
  unsigned int long long a:33;
};


int main ()
{
  struct S x = { -1 };
  typeof(+x.a) z = x.a+10;
  printf("%llx\n", z);

  return 0;
}

result:
$ g++ bug.cpp; ./a
200000009

$ g++ -O bug.cpp; ./a
9

gcc version: 4.2 20061212


-- 
           Summary: bit-field: optimization BUG?
           Product: gcc
           Version: 4.2.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: s__nakayama at infoseek dot jp


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


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

end of thread, other threads:[~2009-03-30 20:20 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-12-30  8:21 [Bug c++/30332] New: bit-field: optimization BUG? s__nakayama at infoseek dot jp
2006-12-30  8:28 ` [Bug c++/30332] " pinskia at gcc dot gnu dot org
2007-01-21  5:29 ` bangerth at dealii dot org
2007-01-21  5:32 ` [Bug c++/30332] [4.1/4.2?/4.3? regression] " bangerth at dealii dot org
2007-01-21 22:01 ` [Bug c++/30332] [4.1/4.2/4.3 " pinskia at gcc dot gnu dot org
2007-01-25  6:06 ` mmitchel at gcc dot gnu dot org
2007-02-14  9:28 ` mmitchel at gcc dot gnu dot org
2007-02-21 15:12 ` rguenth at gcc dot gnu dot org
2007-12-11 13:47 ` rguenth at gcc dot gnu dot org
2008-01-25 12:56 ` [Bug c++/30332] [4.1/4.2 " rguenth at gcc dot gnu dot org
2008-07-04 21:48 ` [Bug c++/30332] [4.2 " jsm28 at gcc dot gnu dot org
2009-03-30 20:20 ` jsm28 at gcc dot gnu dot 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).