* coffgrok.c: Likewise.
* filemode.c: Likewise.
* objcopy.c: Likewise.
* objdump.c: Likewise.
* prdbg.c: Likewise.
* stabs.c: Likewise.
* unwind-ia64.c: Likewise.
consistent with gdb and as: Add 0x when printing hex.
Don't print extra leading zeros.
Attempt to not print "filename.o".
- * objdump.c: Add some enum-to-int casts to accomodate old compilers.
+ * objdump.c: Add some enum-to-int casts to accommodate old compilers.
Fri May 3 22:21:44 1991 John Gilmore (gnu at cygint.cygnus.com)
{
if (aux->x_sym.x_tagndx.p)
{
- /* Referring to a struct defined elsewhere */
+ /* Refe0rring to a struct defined elsewhere */
res->type = coff_structref_type;
res->u.astructref.ref = tindex[INDEXOF (aux->x_sym.x_tagndx.p)];
res->size = res->u.astructref.ref ?
case T_ENUM:
if (aux->x_sym.x_tagndx.p)
{
- /* Refering to a enum defined elsewhere */
+ /* Referring to a enum defined elsewhere */
res->type = coff_enumref_type;
res->u.aenumref.ref = tindex[INDEXOF (aux->x_sym.x_tagndx.p)];
res->size = res->u.aenumref.ref->type->size;
'd' for directories
'b' for block special files
'c' for character special files
- 'm' for multiplexor files
+ 'm' for multiplexer files
'l' for symbolic links
's' for sockets
'p' for fifos
/* Whether to remove the leading character from global symbol names. */
static bfd_boolean remove_leading_char = FALSE;
-/* Whether to permit wildcard in symbol comparasion. */
+/* Whether to permit wildcard in symbol comparison. */
static bfd_boolean wildcard = FALSE;
/* List of symbols to strip, keep, localize, keep-global, weaken,
4. dump_bfd() in turn calls separate functions to display the requested
item(s) of information(s). For example disassemble_data() is called if
- a disassmebly has been requested.
+ a disassembly has been requested.
When disassembling the code loops through blocks of instructions bounded
by symbols, calling disassemble_bytes() on each block. The actual
if (! tg_fix_visibility (info, visibility))
return FALSE;
- /* It happends, a bug? */
+ /* It happens, a bug? */
if (! name[0])
return TRUE;
}
else
{
- /* This is a completely wierd case. In order to stuff in the
+ /* This is a completely weird case. In order to stuff in the
names that might contain colons (the usual name delimiter),
Mike Tiemann defined a different name format which is
signalled if the identifier is "op$". In that case, the
#if __GNUC__ >= 2
/* Define BFD64 here, even if our default architecture is 32 bit ELF
as this will allow us to read in and parse 64bit and 32bit ELF files.
- Only do this if we belive that the compiler can support a 64 bit
+ Only do this if we believe that the compiler can support a 64 bit
data type. For now we only rely on GCC being able to do this. */
#define BFD64
#endif