* gcc.dg/empty1.C: Fix typo.

From-SVN: r57710
This commit is contained in:
Mark Mitchell 2002-10-01 22:23:55 +00:00 committed by Mark Mitchell
parent fd1e5d25e3
commit a1d1a0f9b0
2 changed files with 5 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2002-10-01 Mark Mitchell <mark@codesourcery.com>
* gcc.dg/empty1.C: Fix typo.
2002-10-01 Nathan Sidwell <nathan@codesourcery.com>
* gcc.dg/alias-1.c: New test.

View file

@ -7,4 +7,5 @@ union U { int : 0; };
int main () {
if (__alignof__ (struct S) != __alignof__ (union U))
return 1;
return 0;
}