rubinius-compiler 3.34 → 3.35

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: 2b1f66eeedecfd23d304f5ffb516a559cdec6a73
4
- data.tar.gz: 1c8729f75d92e8274a057cab55ca680dd7cdcdf9
3
+ metadata.gz: b80bb320e5822f184b5158ba7b9fd7e1106eac26
4
+ data.tar.gz: ff40eb8681e7b0e164edf4567187a6a8d1b15bdb
5
5
  SHA512:
6
- metadata.gz: 3cc7ab0c23e58cc173aa8b728a27babdd3b38941442a613356536c5aa10b1082c725d197f78a9192f79af1d71b3302bb3d7e781b25bbe1c4ecb1789e0d650608
7
- data.tar.gz: 0c343c73bde690eca4b11d0674af2cefd50fcd4e69aefb2a118ffb4414519db5c91e24b7b4de64d5c79b4f230d26e0e6d865dfbda066bd10544de8517e1c5c45
6
+ metadata.gz: 4653f5cdf378a2040a5b787d0eeeee7a160fd7f81955980e6e37f8f4801e5a3b1581cf9a629c55bde76c98d8b53df80432407f8f245cab619f40ce84a33fe453
7
+ data.tar.gz: db93557b74b60f0fe2a3d4a8cfbcda8dd1c5d813e492d7c8c00e8641c8b0fc8e154b2a01151d9e2e46fdbba635571b4ceeeb6f796072fcfe962fb0e47c2867c7
@@ -1332,14 +1332,26 @@ module CodeTools
1332
1332
  end
1333
1333
 
1334
1334
  def goto_past(arg1)
1335
+ location = @ip + 1
1335
1336
  @stream << 181 << arg1
1336
1337
  @ip += 2
1338
+ arg1.used_at location
1339
+ @current_block.add_stack(0, 0)
1340
+ @current_block.left = arg1.basic_block
1341
+ @current_block.close
1342
+ @current_block = new_basic_block
1337
1343
  @instruction = 181
1338
1344
  end
1339
1345
 
1340
1346
  def goto_future(arg1)
1347
+ location = @ip + 1
1341
1348
  @stream << 182 << arg1
1342
1349
  @ip += 2
1350
+ arg1.used_at location
1351
+ @current_block.add_stack(0, 0)
1352
+ @current_block.left = arg1.basic_block
1353
+ @current_block.close
1354
+ @current_block = new_basic_block
1343
1355
  @instruction = 182
1344
1356
  end
1345
1357
 
@@ -1,5 +1,5 @@
1
1
  module CodeTools
2
2
  class Compiler
3
- VERSION = "3.34"
3
+ VERSION = "3.35"
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.34'
4
+ version: '3.35'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Shirai
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-06-11 00:00:00.000000000 Z
11
+ date: 2019-06-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler