diff options
Diffstat (limited to 'test/Sema/transparent-union.c')
-rw-r--r-- | test/Sema/transparent-union.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Sema/transparent-union.c b/test/Sema/transparent-union.c index 03f6a53..cdfc850 100644 --- a/test/Sema/transparent-union.c +++ b/test/Sema/transparent-union.c @@ -4,7 +4,7 @@ typedef union { float *fp; } TU __attribute__((transparent_union)); -void f(TU); +void f(TU); // expected-note{{passing argument to parameter here}} void g(int *ip, float *fp, char *cp) { f(ip); |