Skip to content

Commit

Permalink
Fix number.sign() in cnex
Browse files Browse the repository at this point in the history
  • Loading branch information
gitlarryf authored and ghewgill committed Feb 29, 2024
1 parent 22d634b commit 48125e3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 0 additions & 1 deletion exec/cnex/exclude.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ gc1.neon # Object Count
gc2.neon # Object Count
gc3.neon # Object Count
gc-two-pointers.neon # garbage collection
math-test.neon # math.powmod()

extsample-test.neon # cell_set_pointer
http-test.neon # string$split
Expand Down
3 changes: 3 additions & 0 deletions exec/cnex/number.c
Original file line number Diff line number Diff line change
Expand Up @@ -328,6 +328,9 @@ Number number_abs(Number x)

Number number_sign(Number x)
{
if (bid128_isZero(x)) {
return bid128_from_uint32(0);
}
return bid128_copySign(bid128_from_uint32(1), x);
}

Expand Down

0 comments on commit 48125e3

Please sign in to comment.