home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / msdos / djgpp / diffs / binutils / bfd / aoutx.h next >
Encoding:
Text File  |  1993-05-31  |  1012 b   |  34 lines

  1. *** orig/binutils.2/bfd/aoutx.h    Sun May 30 20:57:26 1993
  2. --- src/binutils.2/bfd/aoutx.h    Sun May 30 21:27:36 1993
  3. ***************
  4. *** 978,984 ****
  5.     (((sym)->type  & (N_ABS | N_TEXT | N_DATA | N_BSS))== N_TEXT)
  6.   
  7.   #define sym_in_data_section(sym) \
  8. !   (((sym)->type  & (N_ABS | N_TEXT | N_DATA | N_BSS))== N_DATA)
  9.   
  10.   #define sym_in_bss_section(sym) \
  11.     (((sym)->type  & (N_ABS | N_TEXT | N_DATA | N_BSS))== N_BSS)
  12. --- 978,985 ----
  13.     (((sym)->type  & (N_ABS | N_TEXT | N_DATA | N_BSS))== N_TEXT)
  14.   
  15.   #define sym_in_data_section(sym) \
  16. !   ((((sym)->type  & (N_ABS | N_TEXT | N_DATA | N_BSS))== N_DATA) \
  17. !    || ((((sym)->type) & N_TYPE) == N_SETV))
  18.   
  19.   #define sym_in_bss_section(sym) \
  20.     (((sym)->type  & (N_ABS | N_TEXT | N_DATA | N_BSS))== N_BSS)
  21. ***************
  22. *** 1215,1221 ****
  23. --- 1216,1225 ----
  24.       }
  25.       }
  26.     if (cache_ptr->symbol.section == 0)
  27. +   {
  28. +     printf("dj: %s %x\n", cache_ptr->symbol.name, cache_ptr->type);
  29.       abort ();
  30. +   }
  31.   }
  32.   
  33.   
  34.