Skip to content

Latest commit

 

History

History
10 lines (9 loc) · 143 Bytes

README.md

File metadata and controls

10 lines (9 loc) · 143 Bytes

3.58

long decode2(long x, long y, long z) {
  // x in %rdi, y in %rsi, z in %rdx
  y -= z;
  x *= y;
  return (y<<63>>63) ^ x;
}