summaryrefslogtreecommitdiffstats
path: root/byterun/fix_code.h
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@inria.fr>1995-05-04 10:15:53 +0000
committerXavier Leroy <xavier.leroy@inria.fr>1995-05-04 10:15:53 +0000
commit61bd8ace6bdb2652f4d51d64e3239a7105f56c26 (patch)
treee8b957df0957c1b483d41d68973824e280445548 /byterun/fix_code.h
parent8f9ea2a7b886e3e0a5cfd76b11fe79d083a7f20c (diff)
Passage a la version bootstrappee (franchissement du Rubicon)
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@2 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'byterun/fix_code.h')
-rw-r--r--byterun/fix_code.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/byterun/fix_code.h b/byterun/fix_code.h
new file mode 100644
index 000000000..c754fad27
--- /dev/null
+++ b/byterun/fix_code.h
@@ -0,0 +1,15 @@
+/* Translate a block of bytecode (endianness switch, threading). */
+
+#ifndef _fix_code_
+#define _fix_code_
+
+
+#include "misc.h"
+#include "mlvalues.h"
+
+void fixup_endianness P((code_t code, asize_t len));
+void thread_code P((code_t code, asize_t len, void * instr_table[]));
+
+
+#endif
+