| 92 | static inline constexpr uint8_t kTypeExternal = 0x20u; |
| 93 | |
| 94 | [[nodiscard]] |
| 95 | static ASMJIT_INLINE_NODEBUG bool is_external(uint8_t type) noexcept { return type == kTypeExternal; } |
| 96 | |
| 97 | [[nodiscard]] |
| 98 | static ASMJIT_INLINE_NODEBUG bool is_large_or_external(uint8_t type) noexcept { return type >= kTypeLarge; } |
no outgoing calls
no test coverage detected