summaryrefslogtreecommitdiff
path: root/benchmark
diff options
context:
space:
mode:
authorAaron Patterson <tenderlove@ruby-lang.org>2021-05-11 13:30:40 -0700
committerAaron Patterson <tenderlove@ruby-lang.org>2021-05-11 13:31:00 -0700
commit07f055bb132f21fd71af2720382ad8d2e8f69e47 (patch)
tree9fc22fdb5d081e61311092ca261214f31e7e278e /benchmark
parent08de37f9fa3469365e6b5c964689ae2bae0eb9f3 (diff)
Revert "Filling cache values on cvar write"
This reverts commit 08de37f9fa3469365e6b5c964689ae2bae0eb9f3. This reverts commit e8ae922b62adb00a80d3d4c49f7d7b0e6026eaba.
Diffstat (limited to 'benchmark')
-rw-r--r--benchmark/vm_cvar.yml20
1 files changed, 0 insertions, 20 deletions
diff --git a/benchmark/vm_cvar.yml b/benchmark/vm_cvar.yml
deleted file mode 100644
index 1d0e161829..0000000000
--- a/benchmark/vm_cvar.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-prelude: |
- class A
- @@foo = 1
-
- def self.foo
- @@foo
- end
-
- ("A".."Z").each do |module_name|
- eval <<-EOM
- module #{module_name}
- end
-
- include #{module_name}
- EOM
- end
- end
-benchmark:
- vm_cvar: A.foo
-loop_count: 600000