From: Richard Stallman Date: Sat, 22 May 1993 18:50:18 +0000 (+0000) Subject: (target_isnan): Use GET_REAL macro to get argument. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9d72da33e140f3c86f0bd87de8eb62579fca8381;p=gcc.git (target_isnan): Use GET_REAL macro to get argument. From-SVN: r4536 --- diff --git a/gcc/real.c b/gcc/real.c index b0f0f19e2b4..faa18261e90 100644 --- a/gcc/real.c +++ b/gcc/real.c @@ -768,8 +768,11 @@ int target_isnan (x) REAL_VALUE_TYPE x; { + unsigned EMUSHORT e[NE]; + #ifdef NANS - return (eisnan (&x)); + GET_REAL (&x, e); + return (eisnan (e)); #else return (0); #endif