summaryrefslogtreecommitdiff
path: root/builtin.h
diff options
context:
space:
mode:
author卜部昌平 <shyouhei@ruby-lang.org>2020-07-13 11:43:24 +0900
committer卜部昌平 <shyouhei@ruby-lang.org>2020-07-16 11:49:09 +0900
commit1fb4e28002327c1224c3ed32783160b011f14747 (patch)
tree90092c1ed3c8d9d2f65aafd6e9d2bf2e812bda21 /builtin.h
parent5d5b8a33f648753f69e10df5d3793bdaa83cfc1f (diff)
skip inlining cexpr! that are not attr! inline
Requested by ko1.
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/3314
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 607458ea71..3b2f477654 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, unsigned);
+ void (*compiler)(FILE *, long, unsigned, bool);
};
#define RB_BUILTIN_FUNCTION(_i, _name, _fname, _arity, _compiler) {\