OSDN Git Service

PR other/14544
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 13 Mar 2004 03:01:55 +0000 (03:01 +0000)
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 13 Mar 2004 03:01:55 +0000 (03:01 +0000)
* gcc.c-torture/execute/20040307-1.c: Remove the 24-bit
bit-field.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@79427 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.c-torture/execute/20040307-1.c

index b3a2819..9481f1d 100644 (file)
@@ -1,3 +1,9 @@
+2004-03-12  Kazu Hirata  <kazu@cs.umass.edu>
+
+       PR other/14544
+       * gcc.c-torture/execute/20040307-1.c: Remove the 24-bit
+       bit-field.
+
 2004-03-12  Ulrich Weigand  <uweigand@de.ibm.com>
 
        * gcc.dg/20040305-2.c: Add missing return statement.
index 33cab6c..8ab8008 100644 (file)
@@ -11,7 +11,6 @@ int main()
     unsigned int bit5:1;
     unsigned int bit6:1;
     unsigned int bit7:1;
-    unsigned int ubyte:24;
   } sdata = {0x01};
 
   while ( sdata.bit0-- > 0 ) {