Fix: Null pointer dereference in ldlex.l
[binutils-gdb.git] / gdb / testsuite / gdb.base / wrong_frame_bt_full-main.c
blob91d2fd5d3387384a71fa6cfe996195530a1a8ba4
1 /* Copyright (C) 2015-2023 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/>. */
18 extern void opaque_routine (void);
20 int dyn_arr_size = 4;
22 int
23 main (void)
25 int i;
26 int my_table_size = dyn_arr_size - 1;
27 int my_table [my_table_size];
29 for (i = 0; i < my_table_size; i++)
30 my_table[i] = i;
32 opaque_routine ();
33 return 0;