Retro68/elfutils/tests/testfile_entry_value.c
Wolfgang Thaller d21be3b4e1 Add elfutils-0.170
(from https://sourceware.org/elfutils/, GPL/LGPL licensed)
2017-09-21 21:04:42 +02:00

20 lines
315 B
C

// gcc -g -O2 -o entry_value entry_value.c
int __attribute__((noinline, noclone)) foo (int x, int y)
{
return x + y;
}
int __attribute__((noinline, noclone)) bar (int x, int y)
{
int z;
z = foo (x, y);
z += foo (y, x);
return z;
}
int
main (int argc, char **argv)
{
return bar (argc + 1, argc - 1);
}