repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[SystemZ] Support builtin_{frame,return}_address() with non-zero argument (#69405)
[llvm-project.git]
/
llvm
/
test
/
DebugInfo
/
Inputs
/
llvm-symbolizer-dwo-test.cc
blob
ea0967a263a8c7ade2c7e30e0d42d2427afeefe9
1
int
f
(
int
a
,
int
b
) {
2
return
a
+
b
;
3
}
4
5
int
g
(
int
a
) {
6
return
a
+
1
;
7
}
8
9
10
int
main
() {
11
return
f
(
2
,
g
(
2
));
12
}
13
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