diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-03-26 13:17:58 +0200 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-03-26 13:17:58 +0200 |
commit | 67a13eb82534996fbd6ba2fc0c36d3e1284bcd8e (patch) | |
tree | 21561c3209cc77c79d32284541c01ab60fec7791 /include | |
parent | 912c07167705613c6db70e542723c7ec2c06c7ea (diff) | |
download | ejit-67a13eb82534996fbd6ba2fc0c36d3e1284bcd8e.tar.gz ejit-67a13eb82534996fbd6ba2fc0c36d3e1284bcd8e.zip |
handle immediates a bit better
+ Passing floats as immediate values is not supported in lightening, but
I might have a go at adding it since it seems like a useful feature at
some point
Diffstat (limited to 'include')
-rw-r--r-- | include/ejit/ejit.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/ejit/ejit.h b/include/ejit/ejit.h index 48c4dda..d4bb725 100644 --- a/include/ejit/ejit.h +++ b/include/ejit/ejit.h @@ -157,7 +157,7 @@ static inline struct ejit_arg ejit_build_arg_f(enum ejit_type type, double x) a.type = type; switch (type) { - case EJIT_FLOAT: a.f = x; break; + case EJIT_FLOAT: a.f = (float)x; break; case EJIT_DOUBLE: a.d = x; break; default: abort(); } @@ -245,7 +245,7 @@ void ejit_destroy_func(struct ejit_func *s); .type = (t)}) #define EJIT_OPERAND_FLT(x, t) \ ((struct ejit_operand){ .kind = EJIT_OPERAND_FLT, \ - .r = (double)(x), \ + .d = (double)(x), \ .type = (t)}) /* maybe slight hack, but increase width to interpeter register width */ |