aboutsummaryrefslogtreecommitdiff
path: root/riscv/insns/uradd64.h
blob: f6787e16d4f8cefd36d87ee90f2185bd4fe5652d (plain)
1
2
3
4
5
6
7
8
9
P_64_UPROFILE({
  rd = rs1 + rs2;
  if (rd < rs1) {
    rd >>= 1;
    rd |= ((reg_t)1 << 63);
  } else {
    rd >>= 1;
  }
})