mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-01-12 09:44:57 +08:00
* gcc.c-torture/compile/990829-1.c: New test.
From-SVN: r28975
This commit is contained in:
parent
03e76b603c
commit
18987000a9
@ -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.
|
||||
|
13
gcc/testsuite/gcc.c-torture/compile/990829-1.c
Normal file
13
gcc/testsuite/gcc.c-torture/compile/990829-1.c
Normal 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);
|
||||
}
|
Loading…
Reference in New Issue
Block a user