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