aboutsummaryrefslogtreecommitdiff
path: root/backend/backend.icl
diff options
context:
space:
mode:
Diffstat (limited to 'backend/backend.icl')
-rw-r--r--backend/backend.icl9
1 files changed, 8 insertions, 1 deletions
diff --git a/backend/backend.icl b/backend/backend.icl
index dbd4441..44653b0 100644
--- a/backend/backend.icl
+++ b/backend/backend.icl
@@ -775,13 +775,20 @@ BEStrictPositions a0 a1 = code {
ccall BEStrictPositions "I:VII:I"
}
// void BEStrictPositions (int functionIndex,int* bits,int** positions);
-
+/*
BECopyInts :: !Int !Int !Int -> Int;
BECopyInts a0 a1 a2 = code {
ccall BECopyInts "III:I"
}
+*/
// int BECopyInts (int cLength,int* ints,int* cleanArray);
+BEGetIntFromArray :: !Int !Int -> Int;
+BEGetIntFromArray a0 a1 = code {
+ ccall BEGetIntFromArray "II:I"
+}
+// int BEGetIntFromArray (int index,int* ints);
+
BEDeclareDynamicTypeSymbol :: !Int !Int !BackEnd -> BackEnd;
BEDeclareDynamicTypeSymbol a0 a1 a2 = code {
ccall BEDeclareDynamicTypeSymbol "II:V:I"