aboutsummaryrefslogtreecommitdiff
path: root/testsuite/ltrace.main/branch_func.c
blob: 0ce311db86509e66785b2e5fca2bf866e5fe3b51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/*
 * This file is part of ltrace.
 * Copyright (C) 2012 Petr Machata, Red Hat Inc.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation; either version 2 of the
 * License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA
 */

/* This is specially made to produce tail calls.  We then trace them
 * and see if ltrace handles it well, or whether its internal stack
 * overflows.  */

__attribute__((noinline, optimize(3))) int
func3(int i)
{
	return i + 1;
}

__attribute__((noinline, optimize(3))) int
func2(int i)
{
	return func3(i * 3);
}

__attribute__((noinline, optimize(3))) int
func1(int i)
{
	return func2(i + 2);
}

__attribute__((optimize(0))) int
main(int argc, char **argv)
{
	int counter = 0;
	int i;
	for (i = 0; i < 100; ++i)
		counter += func1(i);
	return counter;
}