]> granicus.if.org Git - clang/commitdiff
Simplify test.
authorAnders Carlsson <andersca@mac.com>
Sat, 6 Dec 2008 22:27:22 +0000 (22:27 +0000)
committerAnders Carlsson <andersca@mac.com>
Sat, 6 Dec 2008 22:27:22 +0000 (22:27 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@60631 91177308-0d34-0410-b5e6-96231b3b80d8

test/Sema/offsetof.c

index b5adb31f22c90ecd9f3180414e828aa22af84ecf..5fd2a30eb7e14a6590cf4b58bda0cb29a2162b56 100644 (file)
@@ -25,12 +25,13 @@ void swap()
   int c[__builtin_offsetof(struct external_sun3_core, X[42].f2) == 344 ? 1 : -1];  // expected-error {{no member named 'f2'}}
 }    
 
+extern int f();
 
 struct s1 { int a; }; 
-extern int v1[offsetof (struct s1, a) == 0];
+int v1 = offsetof (struct s1, a) == 0 ? 0 : f();
 
 struct s2 { int a; }; 
-extern int v2[__INTADDR__ (&((struct s2 *) 0)->a) == 0];
+int v2 = (int)(&((struct s2 *) 0)->a) == 0 ? 0 : f();
 
 struct s3 { int a; }; 
-extern int v3[__builtin_offsetof(struct s3, a) == 0];
+int v3 = __builtin_offsetof(struct s3, a) == 0 ? 0 : f();