From ba2e3913ff759ef2cee51b64fb60e8d38ad75944 Mon Sep 17 00:00:00 2001 From: matz Date: Fri, 28 Sep 2007 14:17:28 +0000 Subject: * insnhelper.ci (vm_call_method): allow send! to call protected methods as well. [ruby-core:12280] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13551 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- vm_core.h | 1 + 1 file changed, 1 insertion(+) (limited to 'vm_core.h') diff --git a/vm_core.h b/vm_core.h index 7e01bfb99..69e9e1cd0 100644 --- a/vm_core.h +++ b/vm_core.h @@ -539,6 +539,7 @@ typedef struct { #define VM_CALL_TAILRECURSION_BIT (0x01 << 6) #define VM_CALL_SUPER_BIT (0x01 << 7) #define VM_CALL_SEND_BIT (0x01 << 8) +#define VM_CALL_SEND_BANG_BIT (0x01 << 9) /* inline (method|const) cache */ #define NEW_INLINE_CACHE_ENTRY() NEW_WHILE(Qundef, 0, 0) -- cgit