Sign in
◑
Theme
llvm
/
llvm-project
/
4e32fa991ee2c702d64e8db55ece2f01fdd7ffca
/
.
/
lldb
/
test
/
Shell
/
ScriptInterpreter
/
Python
/
Crashlog
/
Inputs
/
inline_test.c
blob: 8f2db68a03706b36cc0871e764ca66128aab9bc1 [
file
]
__attribute__
((
always_inline
))
void
foo
()
{
int
*
i
=
0
;
*
i
=
1
;
}
void
bar
()
{
foo
();
}
int
main
(
int
argc
,
char
**
argv
)
{
bar
();
}