зеркало из https://github.com/github/ruby.git
* benchmark/bm_vm1_neq.rb, bm_vm1_not.rb: added.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14168 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
126e7ed66f
Коммит
3db5e76e50
|
@ -1,3 +1,7 @@
|
||||||
|
Mon Dec 10 09:56:29 2007 Koichi Sasada <ko1@atdot.net>
|
||||||
|
|
||||||
|
* benchmark/bm_vm1_neq.rb, bm_vm1_not.rb: added.
|
||||||
|
|
||||||
Mon Dec 10 07:48:14 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
|
Mon Dec 10 07:48:14 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||||
|
|
||||||
* parse.y (parser_yylex): wrong token was generated. [ruby-dev:32498]
|
* parse.y (parser_yylex): wrong token was generated. [ruby-dev:32498]
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
i = 0
|
||||||
|
obj1 = Object.new
|
||||||
|
obj2 = Object.new
|
||||||
|
|
||||||
|
while i<30000000 # while loop 1
|
||||||
|
i+= 1
|
||||||
|
obj1 != obj2
|
||||||
|
end
|
|
@ -0,0 +1,7 @@
|
||||||
|
i = 0
|
||||||
|
obj = Object.new
|
||||||
|
|
||||||
|
while i<30000000 # while loop 1
|
||||||
|
i+= 1
|
||||||
|
!obj
|
||||||
|
end
|
Загрузка…
Ссылка в новой задаче