blob: bf1fb17ac6f800f8ac0f46c383613df05668aef0 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 %s -fsyntax-only -verify
Andy Gibbs8e8fb3b2012-10-19 12:44:48 +00002// expected-no-diagnostics
Eli Friedmanbc887452008-09-02 05:19:23 +00003
4typedef union {
Mike Stump1eb44332009-09-09 15:08:12 +00005 union wait *__uptr;
6 int *__iptr;
Eli Friedmanbc887452008-09-02 05:19:23 +00007} __WAIT_STATUS __attribute__ ((__transparent_union__));
8
9extern int wait (__WAIT_STATUS __stat_loc);
10
11void fastcgi_cleanup() {
Mike Stump1eb44332009-09-09 15:08:12 +000012 int status = 0;
13 wait(&status);
Eli Friedmanbc887452008-09-02 05:19:23 +000014}
15