summaryrefslogtreecommitdiff
path: root/test/Sema/offsetof.c
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2008-01-30 06:46:30 +0000
committerChris Lattner <sabre@nondot.org>2008-01-30 06:46:30 +0000
commite0c5414f0514a23a5c8c434c81b9f0a35517ab63 (patch)
treec844abb51bdca6b06b8435baa12bd89151e85b96 /test/Sema/offsetof.c
parent3fd1dfa22f2642c627ad2139b048b99fc5507ef3 (diff)
downloadclang-e0c5414f0514a23a5c8c434c81b9f0a35517ab63.tar.gz
make this pass by adding an expected error, add some tests.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@46551 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Sema/offsetof.c')
-rw-r--r--test/Sema/offsetof.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/test/Sema/offsetof.c b/test/Sema/offsetof.c
index 7b8564a6a5..b5adb31f22 100644
--- a/test/Sema/offsetof.c
+++ b/test/Sema/offsetof.c
@@ -22,6 +22,15 @@ void swap()
int a[__builtin_offsetof(struct external_sun3_core, X) == 4 ? 1 : -1];
int b[__builtin_offsetof(struct external_sun3_core, X[42]) == 340 ? 1 : -1];
- int c[__builtin_offsetof(struct external_sun3_core, X[42].f2) == 344 ? 1 : -1];
+ int c[__builtin_offsetof(struct external_sun3_core, X[42].f2) == 344 ? 1 : -1]; // expected-error {{no member named 'f2'}}
}
+
+struct s1 { int a; };
+extern int v1[offsetof (struct s1, a) == 0];
+
+struct s2 { int a; };
+extern int v2[__INTADDR__ (&((struct s2 *) 0)->a) == 0];
+
+struct s3 { int a; };
+extern int v3[__builtin_offsetof(struct s3, a) == 0];