aboutsummaryrefslogtreecommitdiffstats
path: root/lib/compiler/src/beam_type.erl
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2016-11-03 09:58:32 +0100
committerBjörn Gustavsson <[email protected]>2016-11-03 09:58:32 +0100
commit214aba4561eb09020379cb4d7da7e6fffe2873ab (patch)
treeb02f066ce3ebb5e055c3bc60454b51291f25f08a /lib/compiler/src/beam_type.erl
parent38e1f98a0a4729357c3669a5c5e2f93ad5ab1d90 (diff)
parent39d08368a04aa0459390ac070f3570e10cffe219 (diff)
downloadotp-214aba4561eb09020379cb4d7da7e6fffe2873ab.tar.gz
otp-214aba4561eb09020379cb4d7da7e6fffe2873ab.tar.bz2
otp-214aba4561eb09020379cb4d7da7e6fffe2873ab.zip
Merge branch 'gandrade/fmod/PR-1216/OTP-14000'
* gandrade/fmod/PR-1216/OTP-14000: Add test cases for math:fmod/2 BIF Support math:fmod/2 BIF on compiler Add math:fmod/2 BIF
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.