From 4c9a05bc5560ebb1144228bccb5312871a3089f7 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Tue, 14 Jun 1994 18:19:28 -0400 Subject: Cast pointer operands to bzero, bcopy, and bcmp to (char *). From-SVN: r7472 --- gcc/real.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/real.h') diff --git a/gcc/real.h b/gcc/real.h index 5d66861..34d6d67 100644 --- a/gcc/real.h +++ b/gcc/real.h @@ -417,7 +417,7 @@ REAL_VALUE_TYPE real_value_from_int_cst (); #define REAL_VALUE_FROM_CONST_DOUBLE(to, from) \ do { union real_extract u; \ - bcopy (&CONST_DOUBLE_LOW ((from)), &u, sizeof u); \ + bcopy ((char *) &CONST_DOUBLE_LOW ((from)), (char *) &u, sizeof u); \ to = u.d; } while (0) /* Return a CONST_DOUBLE with value R and mode M. */ -- cgit v1.1