From 8c273d4fc0edb4b4ba65573efe807796680a5798 Mon Sep 17 00:00:00 2001 From: matz Date: Mon, 24 Dec 2007 17:05:38 +0000 Subject: * id.c (Init_id): remove several unused symbols. [ruby-core:14362] * compile.c (iseq_specialized_instruction): do not use VM_CALL_SEND_BANG flag any longer. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14622 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- compile.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'compile.c') diff --git a/compile.c b/compile.c index c00ea73b8..bc9e80cfd 100644 --- a/compile.c +++ b/compile.c @@ -1501,14 +1501,9 @@ iseq_specialized_instruction(rb_iseq_t *iseq, INSN *iobj) } if (argc > 0) { - if (mid == idSend || mid == id__send || - mid == idSendBang || - mid == id__send__ ) { + if (mid == idSend || mid == id__send__ ) { OPERAND_AT(iobj, 3) |= INT2FIX(VM_CALL_SEND_BIT); } - if (mid == idSendBang) { - OPERAND_AT(iobj, 3) |= INT2FIX(VM_CALL_SEND_BANG_BIT); - } } } return COMPILE_OK; -- cgit