diff options
Diffstat (limited to 'gcc/real.h')
-rwxr-xr-x | gcc/real.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -353,7 +353,7 @@ REAL_VALUE_TYPE real_value_from_int_cst (union tree_node *, #define REAL_VALUE_FROM_CONST_DOUBLE(to, from) \ do { union real_extract u; \ - bcopy ((char *) &CONST_DOUBLE_LOW ((from)), (char *) &u, sizeof u); \ + memcpy((char *)&u, (char *)&CONST_DOUBLE_LOW(from), sizeof u); \ to = u.d; } while (0) /* Return a CONST_DOUBLE with value R and mode M. */ |