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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e8f2395f5fb4af41d97a72683749820993802ff8
|
4
|
+
data.tar.gz: ad03417e2ab35ea755bb4b81637f5044dd64c540
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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 +
|
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 +
|
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 +
|
993
|
+
location = @ip + 2
|
994
994
|
@stream << 126 << arg1 << arg2
|
995
995
|
@ip += 3
|
996
996
|
arg2.used_at location
|