| OLD | NEW |
| 1 /* Do various things to symbol tables (other than lookup), for GDB. | 1 /* Do various things to symbol tables (other than lookup), for GDB. |
| 2 | 2 |
| 3 Copyright (C) 1986-2000, 2002-2004, 2007-2012 Free Software | 3 Copyright (C) 1986-2000, 2002-2004, 2007-2012 Free Software |
| 4 Foundation, Inc. | 4 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 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 343 fprintf_filtered (outfile, ".."); | 343 fprintf_filtered (outfile, ".."); |
| 344 fputs_filtered (paddress (gdbarch, BLOCK_END (b)), outfile); | 344 fputs_filtered (paddress (gdbarch, BLOCK_END (b)), outfile); |
| 345 if (BLOCK_FUNCTION (b)) | 345 if (BLOCK_FUNCTION (b)) |
| 346 { | 346 { |
| 347 fprintf_filtered (outfile, ", function %s", | 347 fprintf_filtered (outfile, ", function %s", |
| 348 SYMBOL_LINKAGE_NAME (BLOCK_FUNCTION (b))); | 348 SYMBOL_LINKAGE_NAME (BLOCK_FUNCTION (b))); |
| 349 if (SYMBOL_DEMANGLED_NAME (BLOCK_FUNCTION (b)) != NULL) | 349 if (SYMBOL_DEMANGLED_NAME (BLOCK_FUNCTION (b)) != NULL) |
| 350 { | 350 { |
| 351 fprintf_filtered (outfile, ", %s", | 351 fprintf_filtered (outfile, ", %s", |
| 352 SYMBOL_DEMANGLED_NAME (BLOCK_FUNCTION (b))); | 352 SYMBOL_DEMANGLED_NAME (BLOCK_FUNCTION (b))); |
error: old chunk mismatch |
None
| OLD | NEW |