public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c/18666] New: Conversion of floating point into bit-fields
@ 2004-11-25  0:32 jakub at gcc dot gnu dot org
  2004-11-25  0:52 ` [Bug c/18666] " joseph at codesourcery dot com
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: jakub at gcc dot gnu dot org @ 2004-11-25  0:32 UTC (permalink / raw)
  To: gcc-bugs

Is
/* { dg-do run } */
/* { dg-options "-std=c99 -pedantic-errors } */

struct A { unsigned int i : 1; } a;
extern void abort (void);

int
main (void)
{
  a.i = 16.0;
  if (a.i != 0)
    abort ();
  return 0;
}

a valid test or not?  This worked with 3.4.x and earlier, but doesn't any
longer.  The question is mainly if the type of a.i for the 6.3.1.4/1 purposes
is unsigned int (in this case it would be well-defined, 16 is representable
in unsigned int and storing 16 into unsigned int i : 1 bitfield is defined),
or if the type is integer type with precision 1.

-- 
           Summary: Conversion of floating point into bit-fields
           Product: gcc
           Version: 4.0.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: c
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: jakub at gcc dot gnu dot org
                CC: aoliva at redhat dot com,gcc-bugs at gcc dot gnu dot
                    org,joseph at codesourcery dot com


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


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

end of thread, other threads:[~2004-12-23 20:25 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-11-25  0:32 [Bug c/18666] New: Conversion of floating point into bit-fields jakub at gcc dot gnu dot org
2004-11-25  0:52 ` [Bug c/18666] " joseph at codesourcery dot com
2004-12-02 13:41 ` [Bug c/18666] [4.0 Regression] " pinskia at gcc dot gnu dot org
2004-12-23 20:25 ` aoliva 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).