summaryrefslogtreecommitdiff
path: root/builtin.h
diff options
context:
space:
mode:
author卜部昌平 <shyouhei@ruby-lang.org>2020-07-13 12:27:53 +0900
committer卜部昌平 <shyouhei@ruby-lang.org>2020-07-13 12:30:43 +0900
commit927fe2422fe8ca3ee50b76c3ee82d3238ea2daca (patch)
treef327c5a115e45c636fdb912cddd960f3521396c4 /builtin.h
parent16bc9bf7e85ed301498ccdea04569af1808559c2 (diff)
mk_builtin_loader.rb: STACK_ADDR_FROM_TOP unusable
Stacks are emulated in MJIT, must not touch the original VM stack. See also http://ci.rvm.jp/results/trunk-mjit-wait@silicon-docker/3061353
Diffstat (limited to 'builtin.h')
-rw-r--r--builtin.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin.h b/builtin.h
index 0da200f961..607458ea71 100644
--- a/builtin.h
+++ b/builtin.h
@@ -13,7 +13,7 @@ struct rb_builtin_function {
const char * const name;
// for jit
- void (*compiler)(FILE *, long);
+ void (*compiler)(FILE *, long, unsigned);
};
#define RB_BUILTIN_FUNCTION(_i, _name, _fname, _arity, _compiler) {\