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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8866c8d7e7d2b4bfbcbe74b29021b05868185948
|
4
|
+
data.tar.gz: f8e345b1545bc07a8f2fb64f7aee2edea6b37e02
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|