diff options
Diffstat (limited to 'clang/test/Sema/pragma-pack.c')
-rw-r--r-- | clang/test/Sema/pragma-pack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Sema/pragma-pack.c b/clang/test/Sema/pragma-pack.c index 84a946368ff..2ed0874bfd2 100644 --- a/clang/test/Sema/pragma-pack.c +++ b/clang/test/Sema/pragma-pack.c @@ -29,4 +29,4 @@ // Warn about unbalanced pushes. #pragma pack (push,4) // expected-warning {{unterminated '#pragma pack (push, ...)' at end of file}} #pragma pack (push) // expected-warning {{unterminated '#pragma pack (push, ...)' at end of file}} -#pragma pack () +#pragma pack () // expected-note {{did you intend to use '#pragma pack (pop)' instead of '#pragma pack()'?}} |