mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
19 lines
290 B
C++
19 lines
290 B
C++
|
int f(int a, int b) {
|
||
|
return a + b;
|
||
|
}
|
||
|
|
||
|
int g(int a) {
|
||
|
return a + 1;
|
||
|
}
|
||
|
|
||
|
|
||
|
int main() {
|
||
|
return f(2, g(2));
|
||
|
}
|
||
|
|
||
|
// Built with Clang 3.5.0:
|
||
|
// $ mkdir -p /tmp/dbginfo
|
||
|
// $ cp llvm-symbolizer-dwo-test.cc /tmp/dbginfo
|
||
|
// $ cd /tmp/dbginfo
|
||
|
// $ clang -gsplit-dwarf llvm-symbolizer-dwo-test.cc
|