You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
union (bv {00000000000000000000000000000000000000000000000000000000000000001}, bv {})
==>
bv {00000000000000000000000000000000000000000000000000000000000000011}
Notice the two 1s at the end of the result of the union. There should only be one 1.
The bug was discovered in a relatively complicated program, and in the original context 64 can be replaced by a much smaller number (e.g., 5). However, 64 is the smallest number for the above standalone program to demonstrate the bug on my machine. By the way, I was using v3.4 but none of the later commits seemed to touch the CCBV module, and thus I believe the bug is still in the master branch.
The text was updated successfully, but these errors were encountered:
The program
on at least one computer would output
Notice the two
1
s at the end of the result of the union. There should only be one1
.The bug was discovered in a relatively complicated program, and in the original context
64
can be replaced by a much smaller number (e.g.,5
). However,64
is the smallest number for the above standalone program to demonstrate the bug on my machine. By the way, I was usingv3.4
but none of the later commits seemed to touch theCCBV
module, and thus I believe the bug is still in themaster
branch.The text was updated successfully, but these errors were encountered: