tests/int_big_xor: Test that xor result is normalized.
And thus can be successfully used in comparisons, etc.
This commit is contained in:
parent
3d6240ba1b
commit
b56c635d64
|
@ -5,3 +5,4 @@ print((1 << 80) ^ 0)
|
|||
a = 0xfffffffffffffffffffffffffffff
|
||||
print(a ^ (1 << 100))
|
||||
print(a ^ (1 << 200))
|
||||
print(a ^ a == 0)
|
||||
|
|
Loading…
Reference in New Issue