Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / SemaObjC / at-defs.m
blobf02791bfa4da142838ba6bfd3db3d265e59489a5
1 // RUN: %clang_cc1 -triple i386-unknown-unknown -fobjc-runtime=macosx-fragile-10.5 %s -fsyntax-only
3 @interface Test {
4         double a;
6 @end
7 @implementation Test
8 @end
9 @interface TestObject : Test {
10 @public
11   float bar;
12   int foo;
14 @end
15 @implementation TestObject
16 @end
17 struct wibble {
18   @defs(TestObject)
21 extern void *malloc(__typeof__(sizeof(0)));
22 extern int printf(const char *, ...);
24 int main(void)
26         TestObject * a = (id)malloc(100);
27         a->foo = 12;
28         printf("12: %d\n", ((struct wibble*)a)->foo);
29         printf("%d: %d\n", ((char*)&(((struct wibble*)a)->foo)) - (char*)a, ((char*)&(a->foo)) - (char*)a);
30         return 0;