summaryrefslogtreecommitdiff
path: root/test/Sema/offsetof.c
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-08-30 17:51:09 +0000
committerChris Lattner <sabre@nondot.org>2007-08-30 17:51:09 +0000
commitd3fb6adc8879dc0c77b540c4c89561c8a9c8bca1 (patch)
tree658e427d2405ef00fb7b9844e4c98cb6a4643838 /test/Sema/offsetof.c
parent73d0d4fac161ed12926e010dcf8b448a8de6a2ec (diff)
downloadclang-d3fb6adc8879dc0c77b540c4c89561c8a9c8bca1.tar.gz
a new testcase
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@41614 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Sema/offsetof.c')
-rw-r--r--test/Sema/offsetof.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/test/Sema/offsetof.c b/test/Sema/offsetof.c
new file mode 100644
index 0000000000..5848ba4083
--- /dev/null
+++ b/test/Sema/offsetof.c
@@ -0,0 +1,23 @@
+// RUN: clang -parse-ast-check %s
+
+#define offsetof(TYPE, MEMBER) __builtin_offsetof (TYPE, MEMBER)
+
+typedef struct P { int i; float f; } PT;
+struct external_sun3_core
+{
+ unsigned c_regs;
+
+ PT X[100];
+
+};
+
+void swap()
+{
+ int x;
+ x = offsetof(struct external_sun3_core, c_regs);
+ x = __builtin_offsetof(struct external_sun3_core, X[42].f);
+
+ x = __builtin_offsetof(struct external_sun3_core, X[42].f2); // expected-error {{no member named 'f2'}}
+ x = __builtin_offsetof(int, X[42].f2); // expected-error {{offsetof requires struct}}
+}
+