Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
50c9d08fa533b51e8dd36644b686d726c98d9482
/
.
/
clang
/
test
/
CodeGenCXX
/
debug-info-class.cpp
blob: 151c5f90534c505d0107da64986d37699c7d636f [
file
] [
log
] [
blame
]
// RUN: %clang -emit-llvm -g -S %s -o - | grep HdrSize
struct
A
{
int
one
;
static
const
int
HdrSize
=
52
;
int
two
;
A
()
{
int
x
=
1
;
}
};
int
main
()
{
A a
;
}