| OLD | NEW |
| 1 /* Code dealing with dummy stack frames, for GDB, the GNU debugger. | 1 /* Code dealing with dummy stack frames, for GDB, the GNU debugger. |
| 2 | 2 |
| 3 Copyright (C) 2002, 2004, 2007-2012 Free Software Foundation, Inc. | 3 Copyright (C) 2002-2013 Free Software Foundation, Inc. |
| 4 | 4 |
| 5 This file is part of GDB. | 5 This file is part of GDB. |
| 6 | 6 |
| 7 This program is free software; you can redistribute it and/or modify | 7 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 | 8 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 | 9 the Free Software Foundation; either version 3 of the License, or |
| 10 (at your option) any later version. | 10 (at your option) any later version. |
| 11 | 11 |
| 12 This program is distributed in the hope that it will be useful, | 12 This program is distributed in the hope that it will be useful, |
| 13 but WITHOUT ANY WARRANTY; without even the implied warranty of | 13 but WITHOUT ANY WARRANTY; without even the implied warranty of |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 extern void dummy_frame_pop (struct frame_id dummy_id); | 53 extern void dummy_frame_pop (struct frame_id dummy_id); |
| 54 | 54 |
| 55 extern void dummy_frame_discard (struct frame_id dummy_id); | 55 extern void dummy_frame_discard (struct frame_id dummy_id); |
| 56 | 56 |
| 57 /* If the PC falls in a dummy frame, return a dummy frame | 57 /* If the PC falls in a dummy frame, return a dummy frame |
| 58 unwinder. */ | 58 unwinder. */ |
| 59 | 59 |
| 60 extern const struct frame_unwind dummy_frame_unwind; | 60 extern const struct frame_unwind dummy_frame_unwind; |
| 61 | 61 |
| 62 #endif /* !defined (DUMMY_FRAME_H) */ | 62 #endif /* !defined (DUMMY_FRAME_H) */ |
| OLD | NEW |