Embeds a typed data array. See \ref BaseEmitter::embed_data_array() for more details.
| 564 | //! |
| 565 | //! See \ref BaseEmitter::embed_data_array() for more details. |
| 566 | ASMJIT_INLINE Error embed_data_array(TypeId type_id, const void* data, size_t item_count, size_t repeat_count = 1) { |
| 567 | return cc->embed_data_array(type_id, data, item_count, repeat_count); |
| 568 | } |
| 569 | |
| 570 | //! Embeds int8_t `value` repeated by `repeat_count`. |
| 571 | ASMJIT_INLINE Error embed_int8(int8_t value, size_t repeat_count = 1) { return cc->embed_int8(value, repeat_count); } |
no test coverage detected