From b16ef779830205beb18e3784c101b8f72893cdfb Mon Sep 17 00:00:00 2001 From: Ben Elliston Date: Tue, 9 Dec 2008 04:20:19 +0000 Subject: * config/dfp-bit.c (DFP_TO_INT): Remove unnecessary cast. From-SVN: r142577 --- gcc/config/dfp-bit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/config/dfp-bit.c') diff --git a/gcc/config/dfp-bit.c b/gcc/config/dfp-bit.c index bfce851..8437491 100644 --- a/gcc/config/dfp-bit.c +++ b/gcc/config/dfp-bit.c @@ -536,7 +536,7 @@ DFP_TO_INT (DFP_C_TYPE x) /* Rescale if the exponent is less than zero. */ decNumberToIntegralValue (&n2, &n1, &context); /* Get a value to use for the quantize call. */ - decNumberFromString (&qval, (char *) "1.", &context); + decNumberFromString (&qval, "1.", &context); /* Force the exponent to zero. */ decNumberQuantize (&n1, &n2, &qval, &context); /* Get a string, which at this point will not include an exponent. */ -- cgit v1.1