[win/asan] GetInstructionSize: Fix `83 E4 XX` to return 3. (#119644)
[llvm-project.git] / llvm / test / tools / llvm-objdump / BPF / Inputs / test.c
blobbf7b3cec0b16d04b3f4f6b8a65233ec3e6a06bab
1 extern int consume(int);
3 void foo(void) {
4 consume(1);
5 consume(2);
8 void bar(void) {
9 consume(3);
12 __attribute__((section("a")))
13 void buz(void) {
14 consume(4);
17 __attribute__((section("b")))
18 void quux(void) {
19 consume(5);