Ignore:
Timestamp:
Jun 6, 2005, 4:42:09 AM (20 years ago)
Author:
bird
Message:

N_EXP - EMX extension for export declarations.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/binutils/bfd/syms.c

    • Property cvs2svn:cvs-rev changed from 1.3 to 1.4
    r2001 r2002  
    289289.#define BSF_THREAD_LOCAL  0x40000
    290290.
     291.  {* Symbol is an emx export definition.  *}
     292.#define BSF_EMX_EXPORT    0x10000000
     293.
    291294.  {* Symbol is an emx import reference.  *}
    292295.#define BSF_EMX_IMPORT1   0x20000000
     
    477480           (type & BSF_EMX_IMPORT1) ? 'e' :
    478481           (type & BSF_EMX_IMPORT2) ? 'E' :
     482           (type & BSF_EMX_EXPORT) ? 'X' :
    479483#endif /* EMX */
    480484           (type & BSF_WEAK) ? 'w' : ' ',
     
    683687  if (symbol->flags & BSF_EMX_IMPORT2)
    684688    return 'E';
     689  if (symbol->flags & BSF_EMX_EXPORT)
     690    return 'X';
    685691#endif /* EMX */
    686692  if (!(symbol->flags & (BSF_GLOBAL | BSF_LOCAL)))
Note: See TracChangeset for help on using the changeset viewer.