home *** CD-ROM | disk | FTP | other *** search
/ Between Heaven & Hell 2 / BetweenHeavenHell.cdr / 500 / 471 / rccl119 < prev    next >
Text File  |  1987-03-02  |  401b  |  14 lines

  1. 20 Aug 80
  2. Robert Henry, UCB
  3.  
  4. All alignments on a double word boundary (via .align 3) converted
  5. to .align 2, as that is all that the assembler guarantees.
  6. (NB: Floating point values can be aligned on any boundary...)
  7.  
  8. A bug in exp.s attempted to relocate an immediate floating
  9. point constant; this makes no sense.
  10.     movd    $huge, r0
  11. changed to
  12.     movd    huge, r0
  13. which is what they wanted anyway
  14.