зеркало из https://github.com/github/ruby.git
14 строки
216 B
YAML
14 строки
216 B
YAML
|
# while loop cost is not removed due to benchmark_driver.gem's limitation
|
||
|
benchmark:
|
||
|
vm_yield: |
|
||
|
def m
|
||
|
i = 0
|
||
|
while i<30_000_000
|
||
|
i += 1
|
||
|
yield
|
||
|
end
|
||
|
end
|
||
|
|
||
|
m{}
|
||
|
loop_count: 1
|