aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2024-06-25 22:23:23 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2024-06-25 22:23:23 +0300
commita0a2a92107cb2ef43b9dab7f1f0bf4e3487436f5 (patch)
tree81cfdfbf6e17c99229d87f7881a56c3a4b241b1c /include
parent8f44960246c39845df83464ea9b4bc59220265aa (diff)
downloadejit-a0a2a92107cb2ef43b9dab7f1f0bf4e3487436f5.tar.gz
ejit-a0a2a92107cb2ef43b9dab7f1f0bf4e3487436f5.zip
move branches to have the dest in r0
Diffstat (limited to 'include')
-rw-r--r--include/ejit/ejit.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/ejit/ejit.h b/include/ejit/ejit.h
index 56582be..512cbb8 100644
--- a/include/ejit/ejit.h
+++ b/include/ejit/ejit.h
@@ -160,10 +160,10 @@ void ejit_destroy_func(struct ejit_func *s);
#define EJIT_GPR(x) ((struct ejit_gpr){.r = (x)})
#define EJIT_FPR(x) ((struct ejit_fpr){.f = (x)})
-#define EJIT_OPERAND_GPR(x, type) (struct ejit_operand { .kind = EJIT_OPERAND_GPR, .r = (long)(x), .type = (type)})
-#define EJIT_OPERAND_FPR(x, type) (struct ejit_operand { .kind = EJIT_OPERAND_FPR, .r = (long)(x)})
-#define EJIT_OPERAND_IMM(x, type) (struct ejit_operand { .kind = EJIT_OPERAND_IMM, .r = (long)(x)})
-#define EJIT_OPERAND_FLT(x, type) (struct ejit_operand { .kind = EJIT_OPERAND_FLT, .r = (double)(x)})
+#define EJIT_OPERAND_GPR(x, t) ((struct ejit_operand){ .kind = EJIT_OPERAND_GPR, .r = (long)(x), .type = (t)})
+#define EJIT_OPERAND_FPR(x, t) ((struct ejit_operand){ .kind = EJIT_OPERAND_FPR, .r = (long)(x) .type =(t)})
+#define EJIT_OPERAND_IMM(x, t) ((struct ejit_operand){ .kind = EJIT_OPERAND_IMM, .r = (long)(x), .type = (t)})
+#define EJIT_OPERAND_FLT(x, t) ((struct ejit_operand){ .kind = EJIT_OPERAND_FLT, .r = (double)(x), .type = (t)})
typedef long (*ejit_escape_t)(size_t argc, const struct ejit_arg args[argc]);
typedef double (*ejit_escape_f_t)(size_t argc, const struct ejit_arg args[argc]);