xref: /llvm-project/clang/test/Sema/Inputs/pragma-align-pack1.h (revision e97071d7952068bbb5fee7bf9e46f304044d4aee)
1 #ifdef ALIGN_SET_HERE
2 #pragma align = mac68k
3 // expected-note@-1 {{previous '#pragma pack' directive that modifies alignment is here}}
4 // expected-warning@-2 {{unterminated '#pragma pack (push, ...)' at end of file}}
5 #endif
6 
7 #ifdef RECORD_ALIGN
8 struct S {
9   int x;
10 };
11 #endif
12