Changes between Initial Version and Version 1 of Ticket #241


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

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #241

    • Property Milestonelibc-0.6.5
    • Property Status newaccepted
    • Property Summary libc build failurelibc: build failure with newer gcc/binutils
    • Property Version 0.70.6
  • 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).