rubinius-compiler 3.30 → 3.31

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: 7cd7697262cbd3ee77850f94b0f6468ebb54576b
4
- data.tar.gz: 7547a1dc80c142d9df69413d55ea8f6dbd7e9856
3
+ metadata.gz: e8f2395f5fb4af41d97a72683749820993802ff8
4
+ data.tar.gz: ad03417e2ab35ea755bb4b81637f5044dd64c540
5
5
  SHA512:
6
- metadata.gz: 43811266942c0d87e2424aa7941235ce9574a57c8711850c8359103f9a3dc5e2929be99b985f7eb4cac730d96fdf4311355fa4c9dd54f009ca206cb554a9cab2
7
- data.tar.gz: 8483eaf6f36ae8970cc821d1248b67d2612c3d5f38b41c8ed22355384e5c2e390140007eaf487f908ef9d5ab57803e5c38b80b365234e49cc902af83d5c8a62a
6
+ metadata.gz: '09c5ea2981d16b3ac5f266b9500d630c55667fc3210c9b212e16d239ac689209d44376f6044eeace0aa7f6003fda01f5f9033ec62b5d1fc00c0deacd044a8ed0'
7
+ data.tar.gz: 7d7e72c3cd2ce1b5fc5d3c1aead2f03c5cb57fca9fd49aebe840b18589751dc4a332a9af01f739bd5d1780d5d4a3ef00b928cbd35459b7a0625a998426f5be7c
@@ -964,7 +964,7 @@ module CodeTools
964
964
 
965
965
  # Branching instructions
966
966
  def b_if_serial(arg1, arg2, arg3)
967
- location = @ip + 1
967
+ location = @ip + 3
968
968
  @stream << 124 << arg1 << arg2 << arg3
969
969
  @ip += 4
970
970
  arg3.used_at location
@@ -977,7 +977,7 @@ module CodeTools
977
977
  end
978
978
 
979
979
  def b_if_int(arg1, arg2, arg3)
980
- location = @ip + 1
980
+ location = @ip + 3
981
981
  @stream << 125 << arg1 << arg2 << arg3
982
982
  @ip += 4
983
983
  arg3.used_at location
@@ -990,7 +990,7 @@ module CodeTools
990
990
  end
991
991
 
992
992
  def b_if(arg1, arg2)
993
- location = @ip + 1
993
+ location = @ip + 2
994
994
  @stream << 126 << arg1 << arg2
995
995
  @ip += 3
996
996
  arg2.used_at location
@@ -1,5 +1,5 @@
1
1
  module CodeTools
2
2
  class Compiler
3
- VERSION = "3.30"
3
+ VERSION = "3.31"
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.30'
4
+ version: '3.31'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Shirai