android13/external/libabigail/tests/data/test-diff-dwarf/test14-inline-v1.cc

16 lines
178 B
C++

// Compile this *with* optimization so that
// foo is inlined:
// g++ -g -O2 -c test14-inline-v0.cc
int
foo()
{
int i = 0;
++i;
return i;
}
int
bar()
{return foo();}