mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* vm_insnhelper.h (CALL_SIMPLE_METHOD): change name of 'recv' argument
so that other variable names may be used when calling this macro git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42741 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
7a4feec795
commit
e1fd7fa03e
1 changed files with 2 additions and 2 deletions
|
@ -251,9 +251,9 @@ enum vm_regan_acttype {
|
|||
#define USE_IC_FOR_SPECIALIZED_METHOD 1
|
||||
#endif
|
||||
|
||||
#define CALL_SIMPLE_METHOD(recv) do { \
|
||||
#define CALL_SIMPLE_METHOD(recv_) do { \
|
||||
ci->blockptr = 0; ci->argc = ci->orig_argc; \
|
||||
vm_search_method(ci, ci->recv = (recv)); \
|
||||
vm_search_method(ci, ci->recv = (recv_)); \
|
||||
CALL_METHOD(ci); \
|
||||
} while (0)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue