diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-03-07 18:50:34 +0200 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-03-07 18:52:54 +0200 |
commit | ba9145b0b7af2a82c62f8dfa28807958af5d0c8d (patch) | |
tree | 52e14e07d82d57a305334f1300293d6b0af75aca /src/interp.inc | |
parent | 6d00dddef440590eaba9acdc9bbd093653d46519 (diff) | |
download | ejit-ba9145b0b7af2a82c62f8dfa28807958af5d0c8d.tar.gz ejit-ba9145b0b7af2a82c62f8dfa28807958af5d0c8d.zip |
make code a bit more robust
+ Should be more difficult to make mistakes in the future, ejit can now
automatically keep track of how many register slots are used and if 64
bit mode is required. Slight runtime overhead, but not too bad.
Diffstat (limited to 'src/interp.inc')
-rw-r--r-- | src/interp.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/interp.inc b/src/interp.inc index 75e7ff2..735eb09 100644 --- a/src/interp.inc +++ b/src/interp.inc @@ -1036,7 +1036,7 @@ /* dispatch is technically unnecessary for returns, but keep it for * symmetry */ DO(RETR); - retval = gpr[i.r0]; + retval = gpr[i.r1]; goto out; DISPATCH(); @@ -1046,12 +1046,12 @@ DISPATCH(); DO(RETR_F); - retval_f = fpr[i.r0].f; + retval_f = fpr[i.r1].f; goto out; DISPATCH(); DO(RETR_D); - retval_f = fpr[i.r0].d; + retval_f = fpr[i.r1].d; goto out; DISPATCH(); |