[SystemZ] Support builtin_{frame,return}_address() with non-zero argument (#69405)
[llvm-project.git] / llvm / test / DebugInfo / Inputs / llvm-symbolizer-dwo-test.cc
blobea0967a263a8c7ade2c7e30e0d42d2427afeefe9
1 int f(int a, int b) {
2 return a + b;
5 int g(int a) {
6 return a + 1;
10 int main() {
11 return f(2, g(2));
14 // Built with Clang 3.5.0:
15 // $ mkdir -p /tmp/dbginfo
16 // $ cp llvm-symbolizer-dwo-test.cc /tmp/dbginfo
17 // $ cd /tmp/dbginfo
18 // $ clang -gsplit-dwarf llvm-symbolizer-dwo-test.cc