decLibrary.c (__dec_type_swap): Add prototype.
authorJanis Johnson <janis@gcc.gnu.org>
Tue, 21 Nov 2006 20:35:57 +0000 (20:35 +0000)
committerJanis Johnson <janis@gcc.gnu.org>
Tue, 21 Nov 2006 20:35:57 +0000 (20:35 +0000)
decnumber/
* decLibrary.c (__dec_type_swap): Add prototype.
(__dfp_enable_traps, dfp_raise): Delete.
gcc/
* config/dfp-bit.h (CONTEXT_TRAPS, CONTEXT_ERRORS, DFP_RAISE): Delete.
* config/dfp-bit.c (dfp_unary_op, dfp_binary_op, dfp_compare_op,
DFP_TO_DFP, INT_TO_DFP, BFP_TO_DFP): Remove calls to DFP_RAISE.
testsuite/
* gcc.dg/dfp/snan.c: Delete.

From-SVN: r119068

gcc/ChangeLog
gcc/config/dfp-bit.c
gcc/config/dfp-bit.h
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/dfp/snan.c [deleted file]
libdecnumber/ChangeLog
libdecnumber/decLibrary.c

index e55777a6af095aa0f04ac9df48a4a6341dec9685..74c98548750ba0931bc3881d1dc18fa7053ee5c1 100644 (file)
@@ -1,5 +1,9 @@
 2006-11-21  Janis Johnson  <janis187@us.ibm.com>
 
+       * config/dfp-bit.h (CONTEXT_TRAPS, CONTEXT_ERRORS, DFP_RAISE): Delete.
+       * config/dfp-bit.c (dfp_unary_op, dfp_binary_op, dfp_compare_op,
+       DFP_TO_DFP, INT_TO_DFP, BFP_TO_DFP): Remove calls to DFP_RAISE.
+
        * config/dfp-bit.c (dfp_binary_func): Fix typedef.
 
 2006-11-21  Douglas Gregor <doug.gregor@gmail.com>
index 9cdf64596fa827ef6d788f20ff46534c4ab28c5b..fafe7dc1a2dcb2293d512853b9169fd6d21b2e01 100644 (file)
@@ -88,9 +88,6 @@ dfp_unary_op (dfp_unary_func op, DFP_C_TYPE arg)
   /* Perform the operation.  */
   op (&res, &arg1, &context);
 
-  if (CONTEXT_TRAPS && CONTEXT_ERRORS (context))
-    DFP_RAISE (0);
-
   TO_ENCODED (&encoded_result, &res, &context);
   IEEE_TO_HOST (encoded_result, &result);
   return result;
@@ -118,9 +115,6 @@ dfp_binary_op (dfp_binary_func op, DFP_C_TYPE arg_a, DFP_C_TYPE arg_b)
   /* Perform the operation.  */
   op (&res, &arg1, &arg2, &context);
 
-  if (CONTEXT_TRAPS && CONTEXT_ERRORS (context))
-    DFP_RAISE (0);
-
   TO_ENCODED (&encoded_result, &res, &context);
   IEEE_TO_HOST (encoded_result, &result);
   return result;
@@ -148,9 +142,6 @@ dfp_compare_op (dfp_binary_func op, DFP_C_TYPE arg_a, DFP_C_TYPE arg_b)
   /* Perform the comparison.  */
   op (&res, &arg1, &arg2, &context);
 
-  if (CONTEXT_TRAPS && CONTEXT_ERRORS (context))
-    DFP_RAISE (0);
-
   if (decNumberIsNegative (&res))
     result = -1;
   else if (decNumberIsZero (&res))
@@ -379,8 +370,6 @@ DFP_TO_DFP (DFP_C_TYPE f_from)
   HOST_TO_IEEE (f_from, &s_from);
   TO_INTERNAL (&s_from, &d);
   TO_ENCODED_TO (&s_to, &d, &context);
-  if (CONTEXT_TRAPS && (context.status & DEC_Inexact) != 0)
-    DFP_RAISE (DEC_Inexact);
 
   IEEE_TO_HOST_TO (s_to, &f_to);
   return f_to;
@@ -469,8 +458,6 @@ INT_TO_DFP (INT_TYPE i)
   /* Convert from the floating point string to a decimal* type.  */
   FROM_STRING (&s, buf, &context);
   IEEE_TO_HOST (s, &f);
-  if (CONTEXT_TRAPS && (context.status & DEC_Inexact) != 0)
-    DFP_RAISE (DEC_Inexact);
   return f;
 }
 #endif
@@ -519,8 +506,6 @@ BFP_TO_DFP (BFP_TYPE x)
   /* Convert from the floating point string to a decimal* type.  */
   FROM_STRING (&s, buf, &context);
   IEEE_TO_HOST (s, &f);
-  if (CONTEXT_TRAPS && (context.status & DEC_Inexact) != 0)
-    DFP_RAISE (DEC_Inexact);
   return f;
 }
 #endif
index a6c7798982b0b0a84017ec0f0cb89b82064c0ba6..dfad7d308b13efb56743b441111cb067cba7f7e9 100644 (file)
@@ -118,12 +118,6 @@ Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
 extern enum rounding   __decGetRound (void);
 #define CONTEXT_ROUND  __decGetRound ()
 
-extern int __dfp_traps;
-#define CONTEXT_TRAPS  __dfp_traps
-#define CONTEXT_ERRORS(context)        context.status & DEC_Errors
-extern void __dfp_raise (int);
-#define DFP_RAISE(A)   __dfp_raise(A)
-
 /* Conversions between different decimal float types use WIDTH_TO to
    determine additional macros to define.  */
 
index 592794380a51c0823118fa1176256410ecaea3e5..fc8a3ed5bf1680525f4418ab4f4730a6c787f433 100644 (file)
@@ -1,4 +1,8 @@
-2006-11-21      Douglas Gregor <doug.gregor@gmail.com>
+2006-11-21  Janis Johnson  <janis187@us.ibm.com>
+
+       * gcc.dg/dfp/snan.c: Delete.
+
+2006-11-21  Douglas Gregor  <doug.gregor@gmail.com>
 
         * g++.dg/cpp0x/static_assert1.C: New.
         * g++.dg/cpp0x/static_assert2.C: New.
diff --git a/gcc/testsuite/gcc.dg/dfp/snan.c b/gcc/testsuite/gcc.dg/dfp/snan.c
deleted file mode 100644 (file)
index efc6e70..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-/* { dg-options "" } */
-
-/* FIXME: this test needs to be conditional to systems with POSIX signals.  */
-
-#include <signal.h>
-
-extern void exit(int status);
-extern void abort(void);
-
-void go_quietly (int arg)
-{
-  exit (0);
-}
-
-int main()
-{
-  _Decimal32 d = 1.5df;
-
-  /* Enable signaling NaNs using a scaffolding libgcc function.  */
-  __dfp_enable_traps ();
-  signal (SIGFPE, go_quietly);
-
-  d = d / 0.0df;
-
-  /* Never reached.  */
-  abort ();
-  return 0;
-}
index 5810ffff2d2436d821bfc7916d27f022b6249942..0068a92bfade1f69915cedc315dc84ea85bcf462 100644 (file)
@@ -1,5 +1,8 @@
 2006-11-21  Janis Johnson  <janis187@us.ibm.com>
 
+       * decLibrary.c (__dec_type_swap): Add prototype.
+       (__dfp_enable_traps, dfp_raise): Delete.
+
        * Makefile.in: Don't include decRound in library used by compiler.
 
 2006-10-10  Brooks Moses  <bmoses@stanford.edu> 
index 19468ac892ea67a0050a863effc4d24e6c515311..f757ffa67d0ff05519fdcb44eb65627b7033f0e7 100644 (file)
@@ -31,8 +31,7 @@ void __host_to_ieee_128 (_Decimal128, decimal128 *);
 extern int isinfd32 (_Decimal32);
 extern int isinfd64 (_Decimal64);
 extern int isinfd128 (_Decimal128);
-extern void __dfp_enable_traps (void);
-extern void __dfp_raise (int exception __attribute__ ((unused)));
+uint32_t __dec_byte_swap (uint32_t);
 
 int
 isinfd32 (_Decimal32 arg)
@@ -67,20 +66,6 @@ isinfd128 (_Decimal128 arg)
   return (decNumberIsInfinite (&dn));
 }
 
-int __dfp_traps;
-
-void
-__dfp_enable_traps (void)
-{
-  __dfp_traps = 1;
-}
-
-void
-__dfp_raise (int exception __attribute__ ((unused)))
-{
-  raise (SIGFPE);
-}
-
 uint32_t
 __dec_byte_swap (uint32_t in)
 {