1 /* Copyright 2002-2019 Free Software Foundation, Inc.
3 This file is part of GDB.
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/>. */
19 * Test GDB's ability to save and reload a corefile.
25 int extern_array
[4] = {1, 2, 3, 4};
26 static int static_array
[4] = {5, 6, 7, 8};
27 static int un_initialized_array
[4];
28 static char *heap_string
;
42 heap_string
= (char *) malloc (80);
43 strcpy (heap_string
, "I'm a little teapot, short and stout...");
44 for (i
= 0; i
< 4; i
++)
46 un_initialized_array
[i
] = extern_array
[i
] + 8;
47 local_array
[i
] = extern_array
[i
] + 12;
49 /* Reference static_array so that clang doesn't discard it. */
50 (void) static_array
[0];
54 int factorial_func (int value
)
57 value
*= factorial_func (value
- 1);