From 215ac4569f897b10215248c4caa3191919a555df Mon Sep 17 00:00:00 2001 From: Kimplul Date: Sat, 13 Jul 2024 22:31:00 +0300 Subject: implement some more jit instructions --- include/ejit/ejit.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') diff --git a/include/ejit/ejit.h b/include/ejit/ejit.h index ce7260b..6e42f15 100644 --- a/include/ejit/ejit.h +++ b/include/ejit/ejit.h @@ -254,7 +254,7 @@ static inline struct ejit_arg ejit_pointer(void *p) static inline struct ejit_arg ejit_float(float a) { - return (struct ejit_arg){.d = a, .type = EJIT_FLOAT}; + return (struct ejit_arg){.f = a, .type = EJIT_FLOAT}; } static inline struct ejit_arg ejit_double(double a) -- cgit v1.2.3