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
[win/asan] GetInstructionSize: Fix `83 E4 XX` to return 3. (#119644)
[llvm-project.git]
/
llvm
/
test
/
tools
/
llvm-objdump
/
BPF
/
Inputs
/
test.c
blob
bf7b3cec0b16d04b3f4f6b8a65233ec3e6a06bab
1
extern
int
consume
(
int
);
2
3
void
foo
(
void
) {
4
consume
(
1
);
5
consume
(
2
);
6
}
7
8
void
bar
(
void
) {
9
consume
(
3
);
10
}
11
12
__attribute__
((
section
(
"a"
)))
13
void
buz
(
void
) {
14
consume
(
4
);
15
}
16
17
__attribute__
((
section
(
"b"
)))
18
void
quux
(
void
) {
19
consume
(
5
);
20
}