mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-23 13:50:11 +00:00
d67d4cc82f
llvm-svn: 109785
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);
|