summaryrefslogtreecommitdiff
path: root/benchmark/vm1_attr_ivar_set.yml
blob: 2f3cb82775aed83d27f31bb66e4241ae0b85a595 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
benchmark:
  vm1_attr_ivar_set: |
    class C
      attr_accessor :a, :b
      def initialize
        @a = nil
        @b = nil
      end
    end
    obj = C.new
    i = 0
    while i<30_000_000 # while loop 1
      i += 1
      obj.a = 1
      obj.b = 2
    end
loop_count: 1