diff options
author | 卜部昌平 <[email protected]> | 2020-07-13 11:43:24 +0900 |
---|---|---|
committer | 卜部昌平 <[email protected]> | 2020-07-16 11:49:09 +0900 |
commit | 1fb4e28002327c1224c3ed32783160b011f14747 (patch) | |
tree | 90092c1ed3c8d9d2f65aafd6e9d2bf2e812bda21 /builtin.h | |
parent | 5d5b8a33f648753f69e10df5d3793bdaa83cfc1f (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.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) {\ |