diff options
author | Anders Carlsson <andersca@mac.com> | 2008-01-29 15:56:48 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2008-01-29 15:56:48 +0000 |
commit | 5a1deb8d9c0722beae28d693fa137bbb942bd11f (patch) | |
tree | 6e1ad85c4c4c2057d736bea1684fd64196a77562 /test/Sema/offsetof.c | |
parent | 12fe558612303cb2188c321a77a21f7df23b6ae8 (diff) |
Implement __builtin_offsetof.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@46515 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Sema/offsetof.c')
-rw-r--r-- | test/Sema/offsetof.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/Sema/offsetof.c b/test/Sema/offsetof.c index 3decec5ed4..7b8564a6a5 100644 --- a/test/Sema/offsetof.c +++ b/test/Sema/offsetof.c @@ -19,5 +19,9 @@ void swap() 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}} + + 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]; } |