aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-01-06 04:48:11 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-01-06 04:48:11 +0000
commitad4213d6feaa3f8c79b4c3de6753b11ae2d46a84 (patch)
tree018871defd2476abc09fe3008fa1f523b6fed384
parent52296cdee134593ec3a18c3420c7c6b7251c24f9 (diff)
downloadruby-ad4213d6feaa3f8c79b4c3de6753b11ae2d46a84.tar.gz
* insns.def (send) : fix to optimize send() with Symbol.
* yarvtest/test_method.rb : add another test. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11495 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog6
-rw-r--r--insns.def3
-rw-r--r--yarvtest/test_method.rb8
3 files changed, 16 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 819ab442f8..2adb256385 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Sat Jan 6 13:48:36 2007 Koichi Sasada <ko1@atdot.net>
+
+ * insns.def (send) : fix to optimize send() with Symbol.
+
+ * yarvtest/test_method.rb : add another test.
+
Sat Jan 6 13:43:55 2007 Koichi Sasada <ko1@atdot.net>
* common.mk : add PHONY dependency to some rules
diff --git a/insns.def b/insns.def
index 0e5ec71185..2f2b399a12 100644
--- a/insns.def
+++ b/insns.def
@@ -1180,7 +1180,8 @@ send
if (node->nd_cfnc == rb_f_funcall || node->nd_cfnc == rb_f_send) {
int i;
- id = rb_to_id(TOPN(num - 1));
+ VALUE sym = TOPN(num - 1);
+ id = SYMBOL_P(sym) ? SYM2ID(sym) : rb_to_id(sym);
/* shift arguments */
for (i=1; i<num; i++) {
diff --git a/yarvtest/test_method.rb b/yarvtest/test_method.rb
index 60e7a9dd4e..249211c2e4 100644
--- a/yarvtest/test_method.rb
+++ b/yarvtest/test_method.rb
@@ -553,6 +553,14 @@ class TestMethod < YarvTestBase
obj.send(:m, :x){}
$r
}
+ ae %q{
+ class C
+ def send
+ :ok
+ end
+ end
+ C.new.send
+ }
end
def test_send_with_private