Changes between Initial Version and Version 1 of Ticket #241


Ignore:
Timestamp:
Mar 5, 2012, 10:02:30 AM (12 years ago)
Author:
bird
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #241

    • Property Status changed from new to accepted
    • Property Milestone changed from to libc-0.6.5
    • Property Version changed from 0.7 to 0.6
    • Property Summary changed from libc build failure to libc: build failure with newer gcc/binutils
  • Ticket #241 – Description

    initial v1  
    1 With newer binutils fnstsw changes from using %ax to %eax:
     1With newer gcc/binutils fnstsw changes from using %ax to %eax:
    22src/msun/i387/fenv.c
     3{{{
    34int
    45_STD(feupdateenv)(const fenv_t *envp)
     
    1718        return (0);
    1819}
    19 
    20 A define may need to be created to determine which binutils is used.
     20}}}
     21The code is incorrectly using int (32-bit) for a 16-bit type (FSW).