Advertisement
Guest User

Untitled

a guest
Apr 8th, 2020
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.31 KB | None | 0 0
  1. else if (IsConstEqual(x, AllOnes(x.Type)))
  2. {
  3.         operation.TurnInto(
  4.                 Instruction.BitwiseNot,
  5.                 operation.Destination,
  6.                 y
  7.         );
  8.         return true;
  9. }
  10. else if (IsConstEqual(y, AllOnes(y.Type)))
  11. {
  12.         operation.TurnInto(
  13.                 Instruction.BitwiseNot,
  14.                 operation.Destination,
  15.                 x
  16.         );
  17.         return true;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement