rubinius-compiler 3.23 → 3.24
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: 66ee7cfabadc68ef5c20b63f008cf38eb5ad7cb7
|
4
|
+
data.tar.gz: 80262ec7c8d361b0131c019b11bf94a02c2bc128
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9c4e82b86b6b2eca2fba230cc20a6a5c567704cdb370846eb068fa9735a6166db8f18e6882c7257855079409be796bbae799aa36cb8e25b82fb004aebb7d77ac
|
7
|
+
data.tar.gz: 720d8287031015cc680678b1fe7d6411988909f4b0074159d812a08638d216c23a7c457da7a0d518bc33ebf61129d9c10e5ff757f4e32f1ca1a34635915f9237
|
@@ -918,9 +918,9 @@ module CodeTools
|
|
918
918
|
@instruction = 116
|
919
919
|
end
|
920
920
|
|
921
|
-
def m_bytes(arg1)
|
922
|
-
@stream << 117 << arg1
|
923
|
-
@ip +=
|
921
|
+
def m_bytes(arg1, arg2)
|
922
|
+
@stream << 117 << arg1 << arg2
|
923
|
+
@ip += 3
|
924
924
|
@instruction = 117
|
925
925
|
end
|
926
926
|
|
@@ -942,9 +942,9 @@ module CodeTools
|
|
942
942
|
@instruction = 120
|
943
943
|
end
|
944
944
|
|
945
|
-
def m_time_stamp(arg1)
|
946
|
-
@stream << 121 << arg1
|
947
|
-
@ip +=
|
945
|
+
def m_time_stamp(arg1, arg2)
|
946
|
+
@stream << 121 << arg1 << arg2
|
947
|
+
@ip += 3
|
948
948
|
@instruction = 121
|
949
949
|
end
|
950
950
|
|
@@ -954,9 +954,9 @@ module CodeTools
|
|
954
954
|
@instruction = 122
|
955
955
|
end
|
956
956
|
|
957
|
-
def m_timer_stop(arg1)
|
958
|
-
@stream << 123 << arg1
|
959
|
-
@ip +=
|
957
|
+
def m_timer_stop(arg1, arg2)
|
958
|
+
@stream << 123 << arg1 << arg2
|
959
|
+
@ip += 3
|
960
960
|
@instruction = 123
|
961
961
|
end
|
962
962
|
end
|