2012-07-01 05:33:57 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -verify -std=c11 -Dalignof=__alignof %s
|
2013-01-29 18:18:33 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -verify -std=c11 -Dalignof=_Alignof -DUSING_C11_SYNTAX %s
|
2011-09-30 02:04:28 +08:00
|
|
|
|
|
|
|
_Alignas(3) int align_illegal; //expected-error {{requested alignment is not a power of 2}}
|
|
|
|
_Alignas(int) char align_big;
|
2013-02-01 16:12:08 +08:00
|
|
|
_Alignas(1) int align_small; // expected-error {{requested alignment is less than minimum}}
|
2011-09-30 02:04:28 +08:00
|
|
|
_Alignas(1) unsigned _Alignas(8) int _Alignas(1) align_multiple;
|
|
|
|
|
|
|
|
struct align_member {
|
|
|
|
_Alignas(8) int member;
|
2013-01-29 17:02:09 +08:00
|
|
|
_Alignas(1) char bitfield : 1; // expected-error {{'_Alignas' attribute cannot be applied to a bit-field}}
|
2011-09-30 02:04:28 +08:00
|
|
|
};
|
|
|
|
|
2013-02-01 16:25:07 +08:00
|
|
|
typedef _Alignas(8) char align_typedef; // expected-error {{'_Alignas' attribute only applies to variables and fields}}
|
2013-01-29 17:02:09 +08:00
|
|
|
|
|
|
|
void f(_Alignas(1) char c) { // expected-error {{'_Alignas' attribute cannot be applied to a function parameter}}
|
|
|
|
_Alignas(1) register char k; // expected-error {{'_Alignas' attribute cannot be applied to a variable with 'register' storage class}}
|
|
|
|
}
|
2011-09-30 02:04:28 +08:00
|
|
|
|
2013-01-29 18:18:33 +08:00
|
|
|
#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
|
2012-07-01 05:33:57 +08:00
|
|
|
_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");
|
|
|
|
_Static_assert(alignof(struct align_member) == 8, "quuux's alignment is wrong");
|
2011-09-30 02:04:28 +08:00
|
|
|
_Static_assert(sizeof(struct align_member) == 8, "quuux's size is wrong");
|