Advertisement
Guest User

Untitled

a guest
Sep 2nd, 2022
20
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. static inline void
  2. svp64_insn_set_prefix_rm_mode_ldst_imm_sat_els(struct svp64_insn *insn, uint64_t value)
  3. {
  4. insn->value &= UINT64_C(0xfffffffeffffffff);
  5. insn->value |= (
  6. (((value >> UINT64_C(0)) & UINT64_C(1)) << UINT64_C(32)) |
  7. UINT64_C(0)
  8. );
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement