From: Per Bothner Date: Sat, 13 Dec 1997 19:40:06 +0000 (+0000) Subject: * expr.c (expand_builtin): Support BUILT_IN_FMOD - just call fmod. X-Git-Tag: releases/libf2c-0.5.21~363 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=14e83f2ef59780b3e41da9fa4b357ad621c348e9;p=thirdparty%2Fgcc.git * expr.c (expand_builtin): Support BUILT_IN_FMOD - just call fmod. From-SVN: r17090 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4971b8e17bdc..f5ef4cc331bc 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Fri Dec 12 18:54:23 1997 Per Bothner + + * expr.c (expand_builtin): Support BUILT_IN_FMOD - just call fmod. + Fri Dec 12 01:19:48 1997 Jason Merrill * flow.c (flow_analysis): Be consistent with find_basic_blocks in diff --git a/gcc/expr.c b/gcc/expr.c index a84beb583f58..8f46449caf41 100644 --- a/gcc/expr.c +++ b/gcc/expr.c @@ -8452,6 +8452,9 @@ expand_builtin (exp, target, subtarget, mode, ignore) return target; + case BUILT_IN_FMOD: + break; + /* __builtin_apply_args returns block of memory allocated on the stack into which is stored the arg pointer, structure value address, static chain, and all the registers that might