Rearrange so the problem is not obscured by warnings

From-SVN: r26755
This commit is contained in:
Zack Weinberg 1999-05-03 15:29:58 +00:00
parent aa65d1a2ad
commit 2d6d3dc232
1 changed files with 3 additions and 2 deletions

View File

@ -1,2 +1,3 @@
int f (register struct S {volatile int field;} arg);
int g (register struct S { int volatile member; });
struct S { volatile int field; };
int f (register struct S arg);
int g (register struct S);