| OLD | NEW |
| 1 /* Support for printing C and C++ types for GDB, the GNU debugger. | 1 /* Support for printing C and C++ types for GDB, the GNU debugger. |
| 2 Copyright (C) 1986, 1988-1989, 1991-1996, 1998-2003, 2006-2012 Free | 2 Copyright (C) 1986-2013 Free Software Foundation, Inc. |
| 3 Software Foundation, Inc. | |
| 4 | 3 |
| 5 This file is part of GDB. | 4 This file is part of GDB. |
| 6 | 5 |
| 7 This program is free software; you can redistribute it and/or modify | 6 This program is free software; you can redistribute it and/or modify |
| 8 it under the terms of the GNU General Public License as published by | 7 it under the terms of the GNU General Public License as published by |
| 9 the Free Software Foundation; either version 3 of the License, or | 8 the Free Software Foundation; either version 3 of the License, or |
| 10 (at your option) any later version. | 9 (at your option) any later version. |
| 11 | 10 |
| 12 This program is distributed in the hope that it will be useful, | 11 This program is distributed in the hope that it will be useful, |
| 13 but WITHOUT ANY WARRANTY; without even the implied warranty of | 12 but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 GNU General Public License for more details. | 14 GNU General Public License for more details. |
| 16 | 15 |
| 17 You should have received a copy of the GNU General Public License | 16 You should have received a copy of the GNU General Public License |
| 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */ | 17 along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
| 19 | 18 |
| 20 #include "defs.h" | 19 #include "defs.h" |
| 21 #include "gdb_obstack.h" | 20 #include "gdb_obstack.h" |
| 22 #include "bfd.h" /* Binary File Description. */ | 21 #include "bfd.h" /* Binary File Description. */ |
| 23 #include "symtab.h" | 22 #include "symtab.h" |
| 24 #include "gdbtypes.h" | 23 #include "gdbtypes.h" |
| 25 #include "expression.h" | 24 #include "expression.h" |
| 26 #include "value.h" | 25 #include "value.h" |
| 27 #include "gdbcore.h" | 26 #include "gdbcore.h" |
| 28 #include "target.h" | 27 #include "target.h" |
| 29 #include "language.h" | 28 #include "language.h" |
| 30 #include "demangle.h" | 29 #include "demangle.h" |
| 31 #include "c-lang.h" | 30 #include "c-lang.h" |
error: old chunk mismatch |
None
| OLD | NEW |