* gcc.c-torture/compile/20030704-1.c: New.

From-SVN: r68943
This commit is contained in:
Kazu Hirata 2003-07-04 22:55:07 +00:00 committed by Kazu Hirata
parent d542f11447
commit 9037065f51
2 changed files with 15 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2003-07-04 Kazu Hirata <kazu@cs.umass.edu>
* gcc.c-torture/compile/20030704-1.c: New.
2003-07-04 Kazu Hirata <kazu@cs.umass.edu>
* gcc.dg/compat/fnptr-by-value-1_x.c: Add a prototype for testva.

View file

@ -0,0 +1,11 @@
/* PR c/11428. */
struct s {
int m : 1;
};
int
foo (struct s *p)
{
return !p->m;
}