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
[Frontend] Remove unused includes (NFC) (#116927)
[llvm-project.git]
/
llvm
/
test
/
DebugInfo
/
Inputs
/
dwarfdump-test-32bit.elf.c
blob
708e037f4e31a2e05297d95272d35c508d0a3c3e
1
// clang -c -g -o dwarfdump-test-32bit.elf.o -m32 dwarfdump-test-32bit.elf.c
2
3
extern
int
glob
;
4
5
int
foo
(
int
arg
) {
6
int
a
=
arg
*
2
;
7
return
a
+
glob
;
8
}
9
10
int
bar
(
int
arg
) {
11
int
a
=
foo
(
arg
) *
foo
(
arg
*
2
);
12
return
glob
-
foo
(
a
);
13
}
14