diff options
author | Guilherme Andrade <[email protected]> | 2016-10-25 22:59:50 +0100 |
---|---|---|
committer | Guilherme Andrade <[email protected]> | 2016-11-02 18:55:28 +0000 |
commit | 3137cabe8ac09841fcaa4786fd7da8fc7caf621b (patch) | |
tree | 2246cabdafa1ce6a478eb09a8a99947b3b04842e /lib/compiler/src/erl_bifs.erl | |
parent | e21a6c9ec713219b0aa2b2a4224f97e713d7337f (diff) | |
download | otp-3137cabe8ac09841fcaa4786fd7da8fc7caf621b.tar.gz otp-3137cabe8ac09841fcaa4786fd7da8fc7caf621b.tar.bz2 otp-3137cabe8ac09841fcaa4786fd7da8fc7caf621b.zip |
Support math:fmod/2 BIF on compiler
Diffstat (limited to 'lib/compiler/src/erl_bifs.erl')
-rw-r--r-- | lib/compiler/src/erl_bifs.erl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/compiler/src/erl_bifs.erl b/lib/compiler/src/erl_bifs.erl index 831730ba48..d60f73d421 100644 --- a/lib/compiler/src/erl_bifs.erl +++ b/lib/compiler/src/erl_bifs.erl @@ -138,6 +138,7 @@ is_pure(math, erf, 1) -> true; is_pure(math, erfc, 1) -> true; is_pure(math, exp, 1) -> true; is_pure(math, floor, 1) -> true; +is_pure(math, fmod, 2) -> true; is_pure(math, log, 1) -> true; is_pure(math, log2, 1) -> true; is_pure(math, log10, 1) -> true; |