- 7EC39EE4A3AD6422DC9A47CB6C2B2F54C617F935817F8ABB8ED43608921A6A401673BCB2444A1AAFFE937792073F9B339EDABA117F709D280FFC98FDA9D70D6F
+ 674EF3017128D99C18659B510929DC1CA0A242E3E05873E356A377552ABA62728A24F0A0D8836B0F014FB33F85E95B7A3BEEB9B9A0A4F728D43C9BEE23379D99
ffa/libffa/w_pred.adb
(19 . 6)(19 . 7)
660
661 with Word_Ops; use Word_Ops;
662
663
664 -- Elementary Predicates on Words:
665 package body W_Pred is
666
(56 . 4)(57 . 11)
668 return W_ZeroP(A xor B);
669 end W_EqP;
670
671
672 -- Return 1 if A is less than B ; otherwise return 0.
673 function W_LtP(A : in Word; B : in Word) return WBool is
674 begin
675 return W_Borrow(A, B, A - B);
676 end W_LtP;
677
678 end W_Pred;