* expr.c (expand_builtin): Support BUILT_IN_FMOD - just call fmod.
From-SVN: r17090
This commit is contained in:
parent
9b8d9d6b02
commit
14e83f2ef5
2 changed files with 7 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
Fri Dec 12 18:54:23 1997 Per Bothner <bothner@cygnus.com>
|
||||
|
||||
* expr.c (expand_builtin): Support BUILT_IN_FMOD - just call fmod.
|
||||
|
||||
Fri Dec 12 01:19:48 1997 Jason Merrill <jason@yorick.cygnus.com>
|
||||
|
||||
* flow.c (flow_analysis): Be consistent with find_basic_blocks in
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue