* gcc.c-torture/compile/990829-1.c: New test.

From-SVN: r28975
This commit is contained in:
Jeffrey A Law 1999-08-29 20:37:24 +00:00 committed by Jeff Law
parent 03e76b603c
commit 18987000a9
2 changed files with 17 additions and 0 deletions

View File

@ -1,3 +1,7 @@
Sun Aug 29 14:35:41 1999 Jeffrey A Law (law@cygnus.com)
* gcc.c-torture/compile/990829-1.c: New test.
1999-08-27 Paul Burchard <burchard@pobox.com>
* g++.old-deja/g++.pt/derived3.C: Renamed from lss-001.C.

View File

@ -0,0 +1,13 @@
struct x
{
int a:16;
int b:16;
int c;
};
bar()
{
struct x y;
y.b = 1 < y.a;
foo(&y);
}