Whoops: correct parity definition

Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
Adrian Conlon 2018-05-02 03:31:05 +01:00
parent 0b2c1fa084
commit 3e87f8a191

View File

@ -70,7 +70,7 @@ inline void EightBit::assume(int expression) {
# define LIKELY(x) (x)
# define UNLIKELY(x) (x)
# define PARITY(x) EightBit::oddParity(x);
# define PARITY(x) EightBit::oddParity(x)
# define UNREACHABLE ASSUME(0)