diff options
author | Hans Wennborg <hans@hanshq.net> | 2012-02-03 15:47:04 +0000 |
---|---|---|
committer | Hans Wennborg <hans@hanshq.net> | 2012-02-03 15:47:04 +0000 |
commit | b64a1fa65ca177506322d7f55bd9681417d134eb (patch) | |
tree | 9250c62ed6e9de014e062e7cb6e12aef2710e078 /clang/test/Sema/anonymous-struct-union-c11.c | |
parent | 5399f4d6bf42725e86427971307a3fc65cb03891 (diff) | |
download | bcm5719-llvm-b64a1fa65ca177506322d7f55bd9681417d134eb.tar.gz bcm5719-llvm-b64a1fa65ca177506322d7f55bd9681417d134eb.zip |
Don't warn about anonymous struct/union in C11.
Also, in C, call this a C11 extension rather than a GNU extension.
llvm-svn: 149695
Diffstat (limited to 'clang/test/Sema/anonymous-struct-union-c11.c')
-rw-r--r-- | clang/test/Sema/anonymous-struct-union-c11.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/clang/test/Sema/anonymous-struct-union-c11.c b/clang/test/Sema/anonymous-struct-union-c11.c new file mode 100644 index 00000000000..229ee520575 --- /dev/null +++ b/clang/test/Sema/anonymous-struct-union-c11.c @@ -0,0 +1,19 @@ +// Check for warnings in non-C11 mode: +// RUN: %clang_cc1 -fsyntax-only -verify -Wc11-extensions %s + +// Expect no warnings in C11 mode: +// RUN: %clang_cc1 -fsyntax-only -pedantic -Werror -std=c11 %s + +struct s { + int a; + struct { // expected-warning{{anonymous structs are a C11 extension}} + int b; + }; +}; + +struct t { + int a; + union { // expected-warning{{anonymous unions are a C11 extension}} + int b; + }; +}; |