diff options
author | Tristan Gingold <gingold@adacore.com> | 2012-01-19 11:45:36 +0000 |
---|---|---|
committer | Tristan Gingold <gingold@adacore.com> | 2012-01-19 11:45:36 +0000 |
commit | 100fc76795de55f12f4a77e5a0a0e6aea70ae420 (patch) | |
tree | bea514ad2a7f65eefdd10de2805550906bb70ba8 | |
parent | 143a3db09872cc891b1e13371223cb9bcc1ca924 (diff) | |
download | gdb-100fc76795de55f12f4a77e5a0a0e6aea70ae420.zip gdb-100fc76795de55f12f4a77e5a0a0e6aea70ae420.tar.gz gdb-100fc76795de55f12f4a77e5a0a0e6aea70ae420.tar.bz2 |
2012-01-19 Tristan Gingold <gingold@adacore.com>
* pef.c: Add a comment.
* xsym.c: Likewise.
-rw-r--r-- | bfd/ChangeLog | 5 | ||||
-rw-r--r-- | bfd/pef.c | 4 | ||||
-rw-r--r-- | bfd/xsym.c | 2 |
3 files changed, 11 insertions, 0 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index a0be3dc..35ab5a4 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2012-01-19 Tristan Gingold <gingold@adacore.com> + + * pef.c: Add a comment. + * xsym.c: Likewise. + 2012-01-17 Alan Modra <amodra@gmail.com> * elf32-ppc.c (ppc_elf_write_core_note <NT_PRPSINFO>): Don't leave @@ -19,6 +19,10 @@ Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */ +/* PEF (Preferred Executable Format) is the binary file format for late + classic Mac OS versions (before Darwin). It is supported by both m68k + and PowerPc. It is also called CFM (Code Fragment Manager). */ + #include "sysdep.h" #include "safe-ctype.h" #include "pef.h" @@ -19,6 +19,8 @@ Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */ +/* xSYM is the debugging format used by CodeWarrior on Mac OS classic. */ + #include "alloca-conf.h" #include "sysdep.h" #include "xsym.h" |