[cfe-commits] r60631 - /cfe/trunk/test/Sema/offsetof.c
Anders Carlsson
andersca at mac.com
Sat Dec 6 14:27:25 PST 2008
Author: andersca
Date: Sat Dec 6 16:27:22 2008
New Revision: 60631
URL: http://llvm.org/viewvc/llvm-project?rev=60631&view=rev
Log:
Simplify test.
Modified:
cfe/trunk/test/Sema/offsetof.c
Modified: cfe/trunk/test/Sema/offsetof.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Sema/offsetof.c?rev=60631&r1=60630&r2=60631&view=diff
==============================================================================
--- cfe/trunk/test/Sema/offsetof.c (original)
+++ cfe/trunk/test/Sema/offsetof.c Sat Dec 6 16:27:22 2008
@@ -25,12 +25,13 @@
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();
More information about the cfe-commits
mailing list