Sign in
llvm
/
llvm-project
/
ba767d0bbbde4107700ff66ecfd97eb75d85a35d
/
.
/
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
();
}