aboutsummaryrefslogtreecommitdiffstats
path: root/lib/compiler/src/beam_type.erl
diff options
context:
space:
mode:
authorGuilherme Andrade <[email protected]>2016-10-25 22:59:50 +0100
committerGuilherme Andrade <[email protected]>2016-11-02 18:55:28 +0000
commit3137cabe8ac09841fcaa4786fd7da8fc7caf621b (patch)
tree2246cabdafa1ce6a478eb09a8a99947b3b04842e /lib/compiler/src/beam_type.erl
parente21a6c9ec713219b0aa2b2a4224f97e713d7337f (diff)
downloadotp-3137cabe8ac09841fcaa4786fd7da8fc7caf621b.tar.gz
otp-3137cabe8ac09841fcaa4786fd7da8fc7caf621b.tar.bz2
otp-3137cabe8ac09841fcaa4786fd7da8fc7caf621b.zip
Support math:fmod/2 BIF on compiler
Diffstat (limited to 'lib/compiler/src/beam_type.erl')
-rw-r--r--lib/compiler/src/beam_type.erl1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/compiler/src/beam_type.erl b/lib/compiler/src/beam_type.erl
index b4776294be..d324580cba 100644
--- a/lib/compiler/src/beam_type.erl
+++ b/lib/compiler/src/beam_type.erl
@@ -594,6 +594,7 @@ is_math_bif(atan2, 2) -> true;
is_math_bif(pow, 2) -> true;
is_math_bif(ceil, 1) -> true;
is_math_bif(floor, 1) -> true;
+is_math_bif(fmod, 2) -> true;
is_math_bif(pi, 0) -> true;
is_math_bif(_, _) -> false.