These will be used by the following commit. Signed-off-by: Emilio G. Cota <c...@braap.org> --- trace/mem-internal.h | 12 ++++++++++++ 1 file changed, 12 insertions(+)
diff --git a/trace/mem-internal.h b/trace/mem-internal.h index a9e408e..f6efaf6 100644 --- a/trace/mem-internal.h +++ b/trace/mem-internal.h @@ -39,4 +39,16 @@ static inline uint8_t trace_mem_get_info(TCGMemOp op, bool store) op & MO_BSWAP, store); } +static inline +uint8_t trace_mem_build_info_no_se_be(int size_shift, bool store) +{ + return trace_mem_build_info(size_shift, false, MO_BE, store); +} + +static inline +uint8_t trace_mem_build_info_no_se_le(int size_shift, bool store) +{ + return trace_mem_build_info(size_shift, false, MO_LE, store); +} + #endif /* TRACE__MEM_INTERNAL_H */ -- 2.7.4