1f51a89d39
These were ignored by git accidentally. We want ALL OF THEM since they all came in the llvm/clang source distribution.
6 lines
144 B
C
6 lines
144 B
C
// Header for PCH test cxx-offsetof-base.cpp
|
|
|
|
struct Base { int x; };
|
|
struct Derived : Base { int y; };
|
|
int o = __builtin_offsetof(Derived, x);
|