1
0
Fork 0
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:
charliesome 2013-08-31 05:45:10 +00:00
parent 7a4feec795
commit e1fd7fa03e

View file

@ -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)