mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
005159e924
This makes llvm-dwarfdump and llvm-symbolizer understand debug info sections compressed by ld.gold linker. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@180088 91177308-0d34-0410-b5e6-96231b3b80d8
25 lines
441 B
C++
25 lines
441 B
C++
class DummyClass {
|
|
int a_;
|
|
public:
|
|
DummyClass(int a) : a_(a) {}
|
|
int add(int b) {
|
|
return a_ + b;
|
|
}
|
|
};
|
|
|
|
int f(int a, int b) {
|
|
DummyClass c(a);
|
|
return c.add(b);
|
|
}
|
|
|
|
int main() {
|
|
return f(2, 3);
|
|
}
|
|
|
|
// Built with Clang 3.2 and ld.gold linker:
|
|
// $ mkdir -p /tmp/dbginfo
|
|
// $ cp dwarfdump-test-zlib.cc /tmp/dbginfo
|
|
// $ cd /tmp/dbginfo
|
|
// $ clang++ -g dwarfdump-test-zlib.cc -Wl,--compress-debug-sections=zlib \
|
|
// -o <output>
|