rubinius-compiler 3.28 → 3.29

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: b494ef91621339032ddd234f1c9a863b9e6faa96
4
- data.tar.gz: 4dfeef3db288e54634bf2f92aec603bea147a5dd
3
+ metadata.gz: 8866c8d7e7d2b4bfbcbe74b29021b05868185948
4
+ data.tar.gz: f8e345b1545bc07a8f2fb64f7aee2edea6b37e02
5
5
  SHA512:
6
- metadata.gz: 004b71251ceeb25dffbf20cba67f0f4c4da05c7f12ef84361729e38d656c7b76582c2f0f9867b247ef7df3a454ac49d0c50dde046bbae9e16af59d63d55bc66c
7
- data.tar.gz: 4c1493e3f38deacd852329ad75da4f301c5f718630c80b744ea315aeedc5d8dd446ff09b733fe0039889d6e4fb64577204cd2779f1848a560585310166c3e818
6
+ metadata.gz: 5af3d68fbba302c1d5d5139d09d28981303a0878f217afecb4229ded6d937c17423a1690043fa0987a8ee24e87fa4754e1d6f480422a3498e4b1f5e2f21d6910
7
+ data.tar.gz: d24636610ff4c6498f05fc5acb315d981f22b17d246304a192fd034025267f65766bf5dc0b5106ac573e7ed712f2670f5598b4b989f14fd121e4f6104c99a4f1
@@ -964,6 +964,7 @@ module CodeTools
964
964
 
965
965
  # Branching instructions
966
966
  def b_if_serial(arg1, arg2, arg3)
967
+ location = @ip + 1
967
968
  @stream << 124 << arg1 << arg2 << arg3
968
969
  @ip += 4
969
970
  arg3.used_at location
@@ -976,6 +977,7 @@ module CodeTools
976
977
  end
977
978
 
978
979
  def b_if_int(arg1, arg2, arg3)
980
+ location = @ip + 1
979
981
  @stream << 125 << arg1 << arg2 << arg3
980
982
  @ip += 4
981
983
  arg3.used_at location
@@ -988,6 +990,7 @@ module CodeTools
988
990
  end
989
991
 
990
992
  def b_if(arg1, arg2)
993
+ location = @ip + 1
991
994
  @stream << 126 << arg1 << arg2
992
995
  @ip += 3
993
996
  arg2.used_at location
@@ -1,5 +1,5 @@
1
1
  module CodeTools
2
2
  class Compiler
3
- VERSION = "3.28"
3
+ VERSION = "3.29"
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.28'
4
+ version: '3.29'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Shirai