Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
f94e215e4a67e5439d56a67bbe470c7860d4b9a6
/
.
/
test
/
CodeGen
/
offsetof.c
blob: 7b6f5039f8c6edc49be5416ed33d410fedba62d7 [
file
] [
log
] [
blame
]
// RUN: clang %s -emit-llvm -o %t
// PR2910
struct
sockaddr_un
{
unsigned
char
sun_len
;
char
sun_path
[
104
];
};
int
test
(
int
len
)
{
return
__builtin_offsetof
(
struct
sockaddr_un
,
sun_path
[
len
+
1
]);
}