Merge branch 'roc-lang:main' into int_overflow

This commit is contained in:
wizard7377 2024-11-28 08:35:17 -05:00 committed by GitHub
commit 62db49f7d2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
231 changed files with 5522 additions and 834 deletions

View file

@ -2241,6 +2241,7 @@ fn build_dec_unary_op<'a, 'ctx>(
match op {
NumAbs => dec_unary_op(env, bitcode::DEC_ABS, arg),
NumNeg => dec_unary_op(env, bitcode::DEC_NEGATE, arg),
NumAcos => dec_unary_op(env, bitcode::DEC_ACOS, arg),
NumAsin => dec_unary_op(env, bitcode::DEC_ASIN, arg),
NumAtan => dec_unary_op(env, bitcode::DEC_ATAN, arg),