From 15310fc90dc6ab2ba52603027eebe8aa5a606a27 Mon Sep 17 00:00:00 2001 From: Kimplul Date: Thu, 24 Apr 2025 20:37:36 +0300 Subject: add some tests to increase coverage --- include/ejit/ejit.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'include') diff --git a/include/ejit/ejit.h b/include/ejit/ejit.h index ab06d8f..d3bc6c3 100644 --- a/include/ejit/ejit.h +++ b/include/ejit/ejit.h @@ -864,6 +864,8 @@ void ejit_ger_d(struct ejit_func *s, struct ejit_gpr r0, struct ejit_fpr r1, void ejit_ler(struct ejit_func *s, struct ejit_gpr r0, struct ejit_gpr r1, struct ejit_gpr r2); +void ejit_ler_u(struct ejit_func *s, struct ejit_gpr r0, struct ejit_gpr r1, + struct ejit_gpr r2); void ejit_ler_f(struct ejit_func *s, struct ejit_gpr r0, struct ejit_fpr r1, struct ejit_fpr r2); void ejit_ler_d(struct ejit_func *s, struct ejit_gpr r0, struct ejit_fpr r1, @@ -912,6 +914,8 @@ struct ejit_reloc ejit_bger_u(struct ejit_func *s, struct ejit_gpr r0, struct ejit_gpr r1); struct ejit_reloc ejit_bger_f(struct ejit_func *s, struct ejit_fpr r0, struct ejit_fpr r1); +struct ejit_reloc ejit_bger_d(struct ejit_func *s, struct ejit_fpr r0, + struct ejit_fpr r1); struct ejit_reloc ejit_bgei(struct ejit_func *s, struct ejit_gpr r0, int64_t o); struct ejit_reloc ejit_bgei_u(struct ejit_func *s, struct ejit_gpr r0, -- cgit v1.2.3