llvm-6502/test/DebugInfo/Inputs/dwarfdump-type-units.cc
2013-09-23 22:44:47 +00:00

16 lines
325 B
C++

struct foo {};
struct bar {};
void sink(void*);
int main() {
foo f;
sink(&f);
bar b;
sink(&b);
}
// Built with GCC 4.8.1
// $ mkdir -p /tmp/dbginfo
// $ cp dwarfdump-type-units.cc /tmp/dbginfo
// $ cd /tmp/dbginfo
// $ g++-4.8.1 -g -fdebug-types-section -c dwarfdump-type-units.cc -o dwarfdump-type-units.elf-x86-64