*** empty log message ***

From-SVN: r38886
This commit is contained in:
Alan Lehotsky 2001-01-10 23:57:55 +00:00 committed by Alan Lehotsky
parent 2f638f9664
commit d0be7718ed
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2001-01-10 Alan Lehotsky <lehotsky@tiac.net>
* gcc.dg/20000926-1.c: Parameterize for machines with 16-bit ints.
2001-01-10 Nathan Sidwell <nathan@codesourcery.com>
* g++.old_deja/g++.pt/error3.C: New test.

View File

@ -3,10 +3,11 @@
/* { dg-do compile } */
/* { dg-options "" } */
#include <limits.h>
struct PDATA
{
unsigned int Dummy:32;
unsigned int Dummy:(sizeof(int)*CHAR_BIT);
const char* PName;
};