| OLD | NEW |
| 1 /* Get info from stack frames; convert between frames, blocks, | 1 /* Get info from stack frames; convert between frames, blocks, |
| 2 functions and pc values. | 2 functions and pc values. |
| 3 | 3 |
| 4 Copyright (C) 1986-2004, 2007-2012 Free Software Foundation, Inc. | 4 Copyright (C) 1986-2004, 2007-2012 Free Software Foundation, Inc. |
| 5 | 5 |
| 6 This file is part of GDB. | 6 This file is part of GDB. |
| 7 | 7 |
| 8 This program is free software; you can redistribute it and/or modify | 8 This program is free software; you can redistribute it and/or modify |
| 9 it under the terms of the GNU General Public License as published by | 9 it under the terms of the GNU General Public License as published by |
| 10 the Free Software Foundation; either version 3 of the License, or | 10 the Free Software Foundation; either version 3 of the License, or |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 Returns 0 if function is not known. | 149 Returns 0 if function is not known. |
| 150 Backward compatibility, no section */ | 150 Backward compatibility, no section */ |
| 151 | 151 |
| 152 struct symbol * | 152 struct symbol * |
| 153 find_pc_function (CORE_ADDR pc) | 153 find_pc_function (CORE_ADDR pc) |
| 154 { | 154 { |
| 155 return find_pc_sect_function (pc, find_pc_mapped_section (pc)); | 155 return find_pc_sect_function (pc, find_pc_mapped_section (pc)); |
| 156 } | 156 } |
| 157 | 157 |
| 158 /* These variables are used to cache the most recent result | 158 /* These variables are used to cache the most recent result |
error: old chunk mismatch |
None
| OLD | NEW |