Sign in
llvm
/
llvm-project
/
lldb
/
4b700623abe3440781e1b93535392bbd59a262ee
/
.
/
test
/
API
/
commands
/
trace
/
intelpt-trace-multi-file
/
main.cpp
blob: 5cfd611cd1778edae6274a92d2983feb9d9d4032 [
file
] [
log
] [
blame
]
#include
"foo.h"
int
__attribute__
((
always_inline
))
inline_function
()
{
int
z
=
0
;
z
++;
return
z
;
}
int
main
()
{
int
res
=
foo
();
res
++;
res
+=
inline_function
();
res
+=
foo
();
return
res
;
}