* 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
Родитель 7a4feec795
Коммит e1fd7fa03e
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

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