aboutsummaryrefslogtreecommitdiff
path: root/test/SemaObjC/suspicious-pragma-pack.m
diff options
context:
space:
mode:
Diffstat (limited to 'test/SemaObjC/suspicious-pragma-pack.m')
-rw-r--r--test/SemaObjC/suspicious-pragma-pack.m6
1 files changed, 0 insertions, 6 deletions
diff --git a/test/SemaObjC/suspicious-pragma-pack.m b/test/SemaObjC/suspicious-pragma-pack.m
deleted file mode 100644
index 125ce1d4cc..0000000000
--- a/test/SemaObjC/suspicious-pragma-pack.m
+++ /dev/null
@@ -1,6 +0,0 @@
-// RUN: %clang_cc1 -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 might change the alignment of struct or union members in the included file}}
-
-#pragma pack (pop)