blob: 9b6b2633f2a1a6e75ad60ac26aa843c6c52615b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
// Copyright 2025 syzkaller project authors. All rights reserved.
// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
int refs0()
{
return 0;
}
void refs1()
{
}
void refs2(void (*)(), int)
{
}
void refs3()
{
refs2(refs1, refs0());
(void)refs2;
}
void long_func_with_ref()
{
refs0();
refs1();
refs0();
refs1();
refs2(refs1, refs0());
refs0();
refs1();
refs0();
refs1();
}
|