Sign in
android
/
platform
/
external
/
compiler-rt
/
8984d7254161da3bf3e64f6b4da1b13a028f55d5
/
.
/
test
/
profile
/
Inputs
/
instrprof-icall-promo_2.cc
blob: 658ab0bf44d1260f8149191bf4d2a54ac39a2111 [
file
] [
log
] [
blame
]
#include
"instrprof-icall-promo.h"
extern
int
ref
(
A
*);
int
A
::
bar
()
{
return
2
;
}
extern
A
*
ap
;
int
test
()
{
for
(
int
i
=
0
;
i
<
10000
;
i
++)
ap
->
foo
();
return
ref
(
ap
);
}
int
main
()
{
test
();
return
0
;
}