gdb/testsuite: fix gdb.trace/signal.exp on x86
[binutils-gdb/blckswan.git] / gdb / testsuite / gdb.reverse / until-reverse.c
blob0456bff32bba2c6290cc38873030743261d36267
1 /* This testcase is part of GDB, the GNU debugger.
3 Copyright 2008-2022 Free Software Foundation, Inc.
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>. */
18 #include <stdio.h>
19 #include <stdlib.h>
21 extern int marker1 (void);
22 extern int marker2 (int a);
23 extern void marker3 (char *a, char *b);
24 extern void marker4 (long d);
27 * This simple classical example of recursion is useful for
28 * testing stack backtraces and such.
31 int factorial(int);
33 int
34 main (int argc, char **argv, char **envp)
36 if (argc == 12345)
38 /* We're used by a test that requires malloc, so make sure it is
39 in the executable. */
40 void *p = malloc (1);
41 free (p);
42 return 1;
45 factorial (atoi ("6")); /* set breakpoint 1 here */
46 /* set breakpoint 12 here */
47 marker1 (); /* set breakpoint 11 here */
48 marker2 (43); /* set breakpoint 20 here */
49 marker3 ("stack", "trace"); /* set breakpoint 21 here */
50 marker4 (177601976L);
52 argc = (argc == 12345); /* This is silly, but we can step off of it */ /* set breakpoint 2 here */
53 return argc; /* set breakpoint 10 here */
54 } /* set breakpoint 10a here */
56 int factorial (int value)
58 if (value > 1) { /* set breakpoint 7 here */
59 value *= factorial (value - 1);
61 return (value); /* set breakpoint 19 here */
64 int multi_line_if_conditional (int a, int b, int c)
66 if (a /* set breakpoint 3 here */
67 && b
68 && c)
69 return 0;
70 else
71 return 1;
74 int multi_line_while_conditional (int a, int b, int c)
76 while (a /* set breakpoint 4 here */
77 && b
78 && c)
80 a--, b--, c--;
82 return 0;