Get number of jumps to this target.
| 759 | |
| 760 | //! Get number of jumps to this target. |
| 761 | ASMJIT_INLINE uint32_t getNumRefs() const noexcept { return _numRefs; } |
| 762 | //! Set number of jumps to this target. |
| 763 | ASMJIT_INLINE void setNumRefs(uint32_t i) noexcept { _numRefs = i; } |
| 764 |