diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-04-20 15:43:33 -0700 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-04-20 15:43:33 -0700 |
| commit | 4a311a4760af037f7a9b8e2b60b4448e92e7f5e4 (patch) | |
| tree | 7fe152566d5da42a05fdacb9786d4c9f6457630d /src/vm.c | |
| parent | d9d404e3b0f2f39b1195e8c5828550d67be8fa34 (diff) | |
| parent | ec4892c7ea0e4bafdee776c79eb9db4071060dc6 (diff) | |
| download | mruby-4a311a4760af037f7a9b8e2b60b4448e92e7f5e4.tar.gz mruby-4a311a4760af037f7a9b8e2b60b4448e92e7f5e4.zip | |
Merge pull request #1196 from monaka/pr-use-mrb_aspec
Cleanup around mrb_code, mrb_aspec.
Diffstat (limited to 'src/vm.c')
| -rw-r--r-- | src/vm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1117,7 +1117,7 @@ mrb_run(mrb_state *mrb, struct RProc *proc, mrb_value self) CASE(OP_ENTER) { /* Ax arg setup according to flags (24=5:5:1:5:5:1:1) */ /* number of optional arguments times OP_JMP should follow */ - int32_t ax = GETARG_Ax(i); + mrb_aspec ax = GETARG_Ax(i); int m1 = (ax>>18)&0x1f; int o = (ax>>13)&0x1f; int r = (ax>>12)&0x1; |
