blob: dfe76a47c26a44b03a52fef221cb2696e566fd06 (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
class MyClass
{
public:
int memberResult()
{
return 1;
}
static int staticResult()
{
return 1;
}
int externResult();
};
// --
int MyClass::externResult()
{
return 1;
}
// --
MyClass m;
// --
enum MyEnum {
myEnumOne = 1,
myEnumTwo,
myEnumThree
};
// --
class AnotherClass
{
public:
__attribute__ ((always_inline)) int complicatedFunction()
{
struct {
int i;
} s = { 15 };
int as[4] = { 2, 3, 4, 5 };
for (signed char a : as)
{
s.i -= a;
}
return s.i;
}
};
// --
int doTest()
{
return m.memberResult() + MyClass::staticResult() + m.externResult() + MyEnum::myEnumThree + myEnumOne + AnotherClass().complicatedFunction();
}
// --
|