From 14e83f2ef59780b3e41da9fa4b357ad621c348e9 Mon Sep 17 00:00:00 2001 From: Per Bothner Date: Sat, 13 Dec 1997 19:40:06 +0000 Subject: [PATCH] * expr.c (expand_builtin): Support BUILT_IN_FMOD - just call fmod. From-SVN: r17090 --- gcc/ChangeLog | 4 ++++ gcc/expr.c | 3 +++ 2 files changed, 7 insertions(+) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4971b8e17bd..f5ef4cc331b 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 a84beb583f5..8f46449caf4 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 -- 2.30.2