rubinius-compiler 3.27 → 3.28

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: c0abb75c78fe52eb27e0f49101fb2acee7d9db9d
4
- data.tar.gz: 48b1322a073b595f4a46442327c74a9fd78ffdd9
3
+ metadata.gz: b494ef91621339032ddd234f1c9a863b9e6faa96
4
+ data.tar.gz: 4dfeef3db288e54634bf2f92aec603bea147a5dd
5
5
  SHA512:
6
- metadata.gz: 7d82351e42cde7a7f25f334bf8a262e38b8dc994d2734fda345bb379cceb271a1fad29efecaefaaa92e2c3e682dd802f7fa4f9c263925c8e99122dbddaa30ca6
7
- data.tar.gz: f2561dab2f8e90a424c7f0027c84a9e39fd29223b17945f5b0d881b7408969f7f64c4f0e1da4709f5d4f2418d0c99120b13fa81f435a824208afc17bd1aa0f2b
6
+ metadata.gz: 004b71251ceeb25dffbf20cba67f0f4c4da05c7f12ef84361729e38d656c7b76582c2f0f9867b247ef7df3a454ac49d0c50dde046bbae9e16af59d63d55bc66c
7
+ data.tar.gz: 4c1493e3f38deacd852329ad75da4f301c5f718630c80b744ea315aeedc5d8dd446ff09b733fe0039889d6e4fb64577204cd2779f1848a560585310166c3e818
@@ -966,18 +966,36 @@ module CodeTools
966
966
  def b_if_serial(arg1, arg2, arg3)
967
967
  @stream << 124 << arg1 << arg2 << arg3
968
968
  @ip += 4
969
+ arg3.used_at location
970
+ @current_block.left = arg3.basic_block
971
+ @current_block.close
972
+ block = new_basic_block
973
+ @current_block.right = block
974
+ @current_block = block
969
975
  @instruction = 124
970
976
  end
971
977
 
972
978
  def b_if_int(arg1, arg2, arg3)
973
979
  @stream << 125 << arg1 << arg2 << arg3
974
980
  @ip += 4
981
+ arg3.used_at location
982
+ @current_block.left = arg3.basic_block
983
+ @current_block.close
984
+ block = new_basic_block
985
+ @current_block.right = block
986
+ @current_block = block
975
987
  @instruction = 125
976
988
  end
977
989
 
978
990
  def b_if(arg1, arg2)
979
991
  @stream << 126 << arg1 << arg2
980
992
  @ip += 3
993
+ arg2.used_at location
994
+ @current_block.left = arg2.basic_block
995
+ @current_block.close
996
+ block = new_basic_block
997
+ @current_block.right = block
998
+ @current_block = block
981
999
  @instruction = 126
982
1000
  end
983
1001
 
@@ -1,5 +1,5 @@
1
1
  module CodeTools
2
2
  class Compiler
3
- VERSION = "3.27"
3
+ VERSION = "3.28"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubinius-compiler
3
3
  version: !ruby/object:Gem::Version
4
- version: '3.27'
4
+ version: '3.28'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Shirai
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-01-09 00:00:00.000000000 Z
11
+ date: 2018-01-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -77,7 +77,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
77
77
  version: '0'
78
78
  requirements: []
79
79
  rubyforge_project:
80
- rubygems_version: 2.5.1
80
+ rubygems_version: 2.5.2
81
81
  signing_key:
82
82
  specification_version: 4
83
83
  summary: A Bytecode compiler for the Rubinius language platform.