diff options
author | Jacques Garrigue <garrigue at math.nagoya-u.ac.jp> | 2004-05-26 11:10:52 +0000 |
---|---|---|
committer | Jacques Garrigue <garrigue at math.nagoya-u.ac.jp> | 2004-05-26 11:10:52 +0000 |
commit | 6a940ef65d7b70f94e221f4b6731b4ed7a9c410e (patch) | |
tree | a002b52a1f42795af154463599d59c883fd01bef /byterun/fix_code.c | |
parent | d1482d5a412e7b42841a174d48e0288f5ab447b5 (diff) |
switch to new vtable representation
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@6331 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'byterun/fix_code.c')
-rw-r--r-- | byterun/fix_code.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/byterun/fix_code.c b/byterun/fix_code.c index 470ae825e..b626f2cb0 100644 --- a/byterun/fix_code.c +++ b/byterun/fix_code.c @@ -113,7 +113,7 @@ void caml_thread_code (code_t code, asize_t len) l[APPTERM] = l[CLOSURE] = l[PUSHGETGLOBALFIELD] = l[GETGLOBALFIELD] = l[MAKEBLOCK] = l[C_CALLN] = l[BEQ] = l[BNEQ] = l[BLTINT] = l[BLEINT] = l[BGTINT] = l[BGEINT] = - l[BULTINT] = l[BUGEINT] = 2; + l[BULTINT] = l[BUGEINT] = l[GETPUBMET] = 2; len /= sizeof(opcode_t); for (p = code; p < code + len; /*nothing*/) { opcode_t instr = *p; |