About
Contact
QtCreator
KDevelop
Solarized
1
#include
"instrprof-icall-promo.h"
2
extern
int
ref
(
A
*);
3
4
int
A
::
bar
() {
return
2
; }
5
6
extern
A
*
ap
;
7
int
test
() {
8
for
(
int
i
=
0
;
i
<
10000
;
i
++)
ap
->
foo
();
9
return
ref
(
ap
);
10
}
11
12
int
main
() {
13
test
();
14
return
0
;
15
}
16