summaryrefslogtreecommitdiffstats
path: root/clang/test/Sema/transparent-union-pointer.c
diff options
context:
space:
mode:
Diffstat (limited to 'clang/test/Sema/transparent-union-pointer.c')
-rw-r--r--clang/test/Sema/transparent-union-pointer.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/test/Sema/transparent-union-pointer.c b/clang/test/Sema/transparent-union-pointer.c
index ea761f17e7d..a58bd42f821 100644
--- a/clang/test/Sema/transparent-union-pointer.c
+++ b/clang/test/Sema/transparent-union-pointer.c
@@ -1,14 +1,14 @@
// RUN: clang-cc %s -fsyntax-only -verify
typedef union {
- union wait *__uptr;
- int *__iptr;
+ union wait *__uptr;
+ int *__iptr;
} __WAIT_STATUS __attribute__ ((__transparent_union__));
extern int wait (__WAIT_STATUS __stat_loc);
void fastcgi_cleanup() {
- int status = 0;
- wait(&status);
+ int status = 0;
+ wait(&status);
}
OpenPOWER on IntegriCloud