diff options
| author | Richard Smith <richard-llvm@metafoo.co.uk> | 2013-01-29 10:18:33 +0000 |
|---|---|---|
| committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2013-01-29 10:18:33 +0000 |
| commit | 064697ca065e0babf6cd6586eeff09ff13e9034f (patch) | |
| tree | 3928c0b5540853b3144699b41633ad72bc4abb29 /clang/test/Sema/alignas.c | |
| parent | 7dd5fe5ce60c8a7146980dc4a30a1574a719986a (diff) | |
| download | bcm5719-llvm-064697ca065e0babf6cd6586eeff09ff13e9034f.tar.gz bcm5719-llvm-064697ca065e0babf6cd6586eeff09ff13e9034f.zip | |
Test update missed in r173789.
llvm-svn: 173790
Diffstat (limited to 'clang/test/Sema/alignas.c')
| -rw-r--r-- | clang/test/Sema/alignas.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/clang/test/Sema/alignas.c b/clang/test/Sema/alignas.c index dbc637bf87c..b5e87cf4b72 100644 --- a/clang/test/Sema/alignas.c +++ b/clang/test/Sema/alignas.c @@ -1,5 +1,5 @@ // RUN: %clang_cc1 -fsyntax-only -verify -std=c11 -Dalignof=__alignof %s -// RUN: %clang_cc1 -fsyntax-only -verify -std=c11 -Dalignof=_Alignof %s +// RUN: %clang_cc1 -fsyntax-only -verify -std=c11 -Dalignof=_Alignof -DUSING_C11_SYNTAX %s _Alignas(3) int align_illegal; //expected-error {{requested alignment is not a power of 2}} _Alignas(int) char align_big; @@ -17,6 +17,11 @@ void f(_Alignas(1) char c) { // expected-error {{'_Alignas' attribute cannot be _Alignas(1) register char k; // expected-error {{'_Alignas' attribute cannot be applied to a variable with 'register' storage class}} } +#ifdef USING_C11_SYNTAX +// expected-warning@+4{{'_Alignof' applied to an expression is a GNU extension}} +// expected-warning@+4{{'_Alignof' applied to an expression is a GNU extension}} +// expected-warning@+4{{'_Alignof' applied to an expression is a GNU extension}} +#endif _Static_assert(alignof(align_big) == alignof(int), "k's alignment is wrong"); _Static_assert(alignof(align_small) == 1, "j's alignment is wrong"); _Static_assert(alignof(align_multiple) == 8, "l's alignment is wrong"); |

