diff options
author | Francois-Xavier Coudert <fxcoudert@gcc.gnu.org> | 2014-06-29 19:51:59 +0000 |
---|---|---|
committer | François-Xavier Coudert <fxcoudert@gcc.gnu.org> | 2014-06-29 19:51:59 +0000 |
commit | 25ef060ae0edc6dee1418d54991486bf6937e5c1 (patch) | |
tree | 14f314d2aaf98dfd620a47860ef01fbc1bd2a321 /libgfortran | |
parent | 7d1ceb93203812df277b0c12ee0248512cb8e992 (diff) | |
download | gcc-25ef060ae0edc6dee1418d54991486bf6937e5c1.zip gcc-25ef060ae0edc6dee1418d54991486bf6937e5c1.tar.gz gcc-25ef060ae0edc6dee1418d54991486bf6937e5c1.tar.bz2 |
fpu-387.h (my_fenv_t): Amend structure so it also works on mingw32.
* config/fpu-387.h (my_fenv_t): Amend structure so it also works
on mingw32.
From-SVN: r212126
Diffstat (limited to 'libgfortran')
-rw-r--r-- | libgfortran/ChangeLog | 5 | ||||
-rw-r--r-- | libgfortran/config/fpu-387.h | 3 |
2 files changed, 6 insertions, 2 deletions
diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog index 10761e1..3e03310 100644 --- a/libgfortran/ChangeLog +++ b/libgfortran/ChangeLog @@ -1,3 +1,8 @@ +2014-06-29 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org> + + * config/fpu-387.h (my_fenv_t): Amend structure so it also works + on mingw32. + 2014-06-28 Jerry DeLisle <jvdelisle@gcc.gnu.org> PR libgfortran/61640 diff --git a/libgfortran/config/fpu-387.h b/libgfortran/config/fpu-387.h index 46720b2..66e2dbe 100644 --- a/libgfortran/config/fpu-387.h +++ b/libgfortran/config/fpu-387.h @@ -76,8 +76,7 @@ typedef struct unsigned short int __unused3; unsigned int __eip; unsigned short int __cs_selector; - unsigned int __opcode:11; - unsigned int __unused4:5; + unsigned short int __opcode; unsigned int __data_offset; unsigned short int __data_selector; unsigned short int __unused5; |