diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-07-13 22:31:00 +0300 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-07-13 22:31:00 +0300 |
commit | 215ac4569f897b10215248c4caa3191919a555df (patch) | |
tree | 6957e76388d3f785c6bfcdbe920b67984bea0c2a /include | |
parent | 5e64dbec81504aaacac1e733edd5230f59670466 (diff) | |
download | ejit-215ac4569f897b10215248c4caa3191919a555df.tar.gz ejit-215ac4569f897b10215248c4caa3191919a555df.zip |
implement some more jit instructions
Diffstat (limited to 'include')
-rw-r--r-- | include/ejit/ejit.h | 2 |
1 files changed, 1 insertions, 1 deletions
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) |