aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUros Bizjak <uros@gcc.gnu.org>2009-06-22 22:44:50 +0200
committerUros Bizjak <uros@gcc.gnu.org>2009-06-22 22:44:50 +0200
commit34481f289c6844b496ead2a34200c5a6e13c3216 (patch)
tree8eda26d8e37774c68bec13c9cb77841917184acd
parente5e85f2b81364d2d80d6663aad5418620fadd2e2 (diff)
downloadgcc-34481f289c6844b496ead2a34200c5a6e13c3216.zip
gcc-34481f289c6844b496ead2a34200c5a6e13c3216.tar.gz
gcc-34481f289c6844b496ead2a34200c5a6e13c3216.tar.bz2
ChangeLog: Fixes.
* libgcc/ChangeLog: Fixes. * gcc/ChangeLog: Ditto. From-SVN: r148815
-rw-r--r--gcc/ChangeLog13
-rw-r--r--libgcc/ChangeLog17
2 files changed, 16 insertions, 14 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 002f696..fffbbd8 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -36,9 +36,10 @@
2009-06-22 Kai Tietz <kai.tietz@onevision.com>
- * config.gcc: Add for x86 and x64 mingw targets t-fprules-soft
- and t-softfp support.
- * config/i386/mingw32.h (LIBGCC2_HAS_TF_MODE): Enable TFmode.
+ * config.gcc (i[34567]86-*-mingw*, x86_64-*-mingw*): Add
+ i386/t-fprules-softfp and soft-fp/t-softfp to tmake_file.
+
+ * config/i386/mingw32.h (LIBGCC2_HAS_TF_MODE): Define.
(LIBGCC2_TF_CEXT): Define.
(TF_SIZE): Define.
@@ -49,9 +50,9 @@
2009-06-22 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
- * config/arm/arm.c (arm_override_options): Disable -mcaller-super-interworking
- and -mcallee-super-interworking.
- * doc/invoke.texi (ARM Options): Document this.
+ * config/arm/arm.c (arm_override_options): Disable
+ -mcaller-super-interworking and -mcallee-super-interworking.
+ * doc/invoke.texi (ARM Options): Document this.
2009-06-22 Nathan Sidwell <nathan@codesourcery.com>
diff --git a/libgcc/ChangeLog b/libgcc/ChangeLog
index 7078a13..d788dc1 100644
--- a/libgcc/ChangeLog
+++ b/libgcc/ChangeLog
@@ -1,19 +1,20 @@
2009-06-22 Kai Tietz <kai.tietz@onevision.com>
- * config.host: Add soft emulation for x86 and x64 mingw targets.
- * config/i386/64/_divtc3.c: Disable for mingw targets usage of
- .symver assembly symbol.
+ * config.host: Add i386/${host_address}/t-fprules-softfp and
+ t-softfp to tmake_file for i[34567]86-*-mingw*, x86_64-*-mingw*.
+
+ * config/i386/64/_divtc3.c: Disable usage of .symver assembly symbol
+ for mingw targets.
* config/i386/64/_multc3.c: Likewise.
* config/i386/64/_powitf2.c: Likewise.
* config/i386/64/eqtf2.c: Likewise.
* config/i386/64/getf2.c: Likewise.
* config/i386/64/letf2.c: Likewise.
* config/i386/64/letf2.c: Likewise.
- * config/i386/64/sfp-machine.h (_FP_W_TYPE): Define it
- for x64 mingw target as unsigned long long.
- (_FP_WS_TYPE): Define it for x64 mingw target as signed long
- long.
- (_FP_I_TYPE): Define it for x64 mingw target as long long.
+ * config/i386/64/sfp-machine.h (_FP_W_TYPE): Define as
+ unsigned long long for x64 mingw targets.
+ (_FP_WS_TYPE): Define as signed long long for x64 mingw target.
+ (_FP_I_TYPE): Define as long long for x64 mingw target.
2009-06-10 Maciej W. Rozycki <macro@linux-mips.org>