| OLD | NEW |
| 1 /* Read a symbol table in ECOFF format (Third-Eye). | 1 /* Read a symbol table in ECOFF format (Third-Eye). |
| 2 | 2 |
| 3 Copyright (C) 1986-1987, 1989-2004, 2007-2012 Free Software | 3 Copyright (C) 1986-1987, 1989-2004, 2007-2012 Free Software |
| 4 Foundation, Inc. | 4 Foundation, Inc. |
| 5 | 5 |
| 6 Original version contributed by Alessandro Forin (af@cs.cmu.edu) at | 6 Original version contributed by Alessandro Forin (af@cs.cmu.edu) at |
| 7 CMU. Major work by Per Bothner, John Gilmore and Ian Lance Taylor | 7 CMU. Major work by Per Bothner, John Gilmore and Ian Lance Taylor |
| 8 at Cygnus Support. | 8 at Cygnus Support. |
| 9 | 9 |
| 10 This file is part of GDB. | 10 This file is part of GDB. |
| (...skipping 1026 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1037 This might do the wrong thing for an enum with one or two | 1037 This might do the wrong thing for an enum with one or two |
| 1038 enumerators and gcc -gcoff -fshort-enums, but these cases | 1038 enumerators and gcc -gcoff -fshort-enums, but these cases |
| 1039 are hopefully rare enough. | 1039 are hopefully rare enough. |
| 1040 Alpha cc -migrate has a sh.value field of zero, we adjust | 1040 Alpha cc -migrate has a sh.value field of zero, we adjust |
| 1041 that too. */ | 1041 that too. */ |
| 1042 if (TYPE_LENGTH (t) == TYPE_NFIELDS (t) | 1042 if (TYPE_LENGTH (t) == TYPE_NFIELDS (t) |
| 1043 || TYPE_LENGTH (t) == 0) | 1043 || TYPE_LENGTH (t) == 0) |
| 1044 TYPE_LENGTH (t) = gdbarch_int_bit (gdbarch) / HOST_CHAR_BIT; | 1044 TYPE_LENGTH (t) = gdbarch_int_bit (gdbarch) / HOST_CHAR_BIT; |
| 1045 for (ext_tsym = ext_sh + external_sym_size; | 1045 for (ext_tsym = ext_sh + external_sym_size; |
| 1046 ; | 1046 ; |
error: old chunk mismatch |
None
| OLD | NEW |