Bitwise logical inclusive or of two ints, complementing the first
When integers are viewed in their two's complement representation,
The guard for
Function:
(defun logorc1 (i j) (declare (xargs :guard (and (integerp i) (integerp j)))) (logior (lognot i) j))