aboutsummaryrefslogtreecommitdiff
path: root/include/ejit/ejit.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/ejit/ejit.h')
-rw-r--r--include/ejit/ejit.h4
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 */