[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[commits] r626 - in /branches/eglibc-2_5/ports: ChangeLog.eglibc sysdeps/arm/eabi/bits/predefs.h sysdeps/arm/eabi/fpu/
- To: commits@xxxxxxxxxx
- Subject: [commits] r626 - in /branches/eglibc-2_5/ports: ChangeLog.eglibc sysdeps/arm/eabi/bits/predefs.h sysdeps/arm/eabi/fpu/
- From: joseph@xxxxxxxxxx
- Date: Thu, 09 Nov 2006 01:25:13 -0000
Author: joseph
Date: Wed Nov 8 17:25:12 2006
New Revision: 626
Log:
* sysdeps/arm/eabi/bits/predefs.h (__STDC_IEC_559__,
__STDC_IEC_559_COMPLEX__): Define if defined (__VFP_FP__) &&
!defined(__SOFTFP__).
* sysdeps/arm/eabi/fpu: Remove.
Removed:
branches/eglibc-2_5/ports/sysdeps/arm/eabi/fpu/
Modified:
branches/eglibc-2_5/ports/ChangeLog.eglibc
branches/eglibc-2_5/ports/sysdeps/arm/eabi/bits/predefs.h
Modified: branches/eglibc-2_5/ports/ChangeLog.eglibc
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D
--- branches/eglibc-2_5/ports/ChangeLog.eglibc (original)
+++ branches/eglibc-2_5/ports/ChangeLog.eglibc Wed Nov 8 17:25:12 2006
@@ -1,3 +1,10 @@
+2006-11-08 Joseph Myers <joseph@xxxxxxxxxxxxxxxx>
+
+ * sysdeps/arm/eabi/bits/predefs.h (__STDC_IEC_559__,
+ __STDC_IEC_559_COMPLEX__): Define if defined (__VFP_FP__) &&
+ !defined(__SOFTFP__).
+ * sysdeps/arm/eabi/fpu: Remove.
+
2006-10-26 Joseph S. Myers <joseph@xxxxxxxxxxxxxxxx>
=
* sysdeps/unix/sysv/linux/arm/eabi/nptl/sysdep-cancel.h
Modified: branches/eglibc-2_5/ports/sysdeps/arm/eabi/bits/predefs.h
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D
--- branches/eglibc-2_5/ports/sysdeps/arm/eabi/bits/predefs.h (original)
+++ branches/eglibc-2_5/ports/sysdeps/arm/eabi/bits/predefs.h Wed Nov 8 17=
:25:12 2006
@@ -1,4 +1,4 @@
-/* Copyright (C) 2005 Free Software Foundation, Inc.
+/* Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of the GNU C Library.
=
The GNU C Library is free software; you can redistribute it and/or
@@ -27,7 +27,7 @@
if a VFP coprocessor is present. If we don't have one, we fall back to
software emulation and the functions won't work properly. So in general,
we don't claim to support this functionality. */
-#if 0
+#if defined (__VFP_FP__) && !defined(__SOFTFP__)
#define __STDC_IEC_559__ 1
#define __STDC_IEC_559_COMPLEX__ 1
#endif