You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
390 B
7 lines
390 B
// RUN: %clang_cc1 -Wpragma-pack-suspicious-include -triple i686-apple-darwin9 -fsyntax-only -I%S/Inputs -verify %s
|
|
|
|
#pragma pack (push, 1) // expected-note {{previous '#pragma pack' directive that modifies alignment is here}}
|
|
#import "empty.h" // expected-warning {{non-default #pragma pack value changes the alignment of struct or union members in the included file}}
|
|
|
|
#pragma pack (pop)
|