rubinius-compiler 3.23 → 3.24

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2c12d7e0caf3666a939196b5e2b7f44624ff3556
4
- data.tar.gz: 8a67b21ebe882ccec2231fc8913b0cc6ecc7dd06
3
+ metadata.gz: 66ee7cfabadc68ef5c20b63f008cf38eb5ad7cb7
4
+ data.tar.gz: 80262ec7c8d361b0131c019b11bf94a02c2bc128
5
5
  SHA512:
6
- metadata.gz: a6b49a1abc56b74867a05aeaa2786ec1f5147b18cf39ed7c09eb67234b2a9ec0360b6f28657bba25a2a8135ffb785fa07a7912eae82d8e047bf61bd197c6a19c
7
- data.tar.gz: 783c60d628594eb0d3a0f6ad113ff8e3da395bda3e670a2fa021b8835c84721edb9e2c4e7b658c40d9caa7d962ea99e4ff0bf3ec61e44455c8ef35269eaf1b6e
6
+ metadata.gz: 9c4e82b86b6b2eca2fba230cc20a6a5c567704cdb370846eb068fa9735a6166db8f18e6882c7257855079409be796bbae799aa36cb8e25b82fb004aebb7d77ac
7
+ data.tar.gz: 720d8287031015cc680678b1fe7d6411988909f4b0074159d812a08638d216c23a7c457da7a0d518bc33ebf61129d9c10e5ff757f4e32f1ca1a34635915f9237
@@ -918,9 +918,9 @@ module CodeTools
918
918
  @instruction = 116
919
919
  end
920
920
 
921
- def m_bytes(arg1)
922
- @stream << 117 << arg1
923
- @ip += 2
921
+ def m_bytes(arg1, arg2)
922
+ @stream << 117 << arg1 << arg2
923
+ @ip += 3
924
924
  @instruction = 117
925
925
  end
926
926
 
@@ -942,9 +942,9 @@ module CodeTools
942
942
  @instruction = 120
943
943
  end
944
944
 
945
- def m_time_stamp(arg1)
946
- @stream << 121 << arg1
947
- @ip += 2
945
+ def m_time_stamp(arg1, arg2)
946
+ @stream << 121 << arg1 << arg2
947
+ @ip += 3
948
948
  @instruction = 121
949
949
  end
950
950
 
@@ -954,9 +954,9 @@ module CodeTools
954
954
  @instruction = 122
955
955
  end
956
956
 
957
- def m_timer_stop(arg1)
958
- @stream << 123 << arg1
959
- @ip += 2
957
+ def m_timer_stop(arg1, arg2)
958
+ @stream << 123 << arg1 << arg2
959
+ @ip += 3
960
960
  @instruction = 123
961
961
  end
962
962
  end
@@ -1,5 +1,5 @@
1
1
  module CodeTools
2
2
  class Compiler
3
- VERSION = "3.23"
3
+ VERSION = "3.24"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubinius-compiler
3
3
  version: !ruby/object:Gem::Version
4
- version: '3.23'
4
+ version: '3.24'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Shirai