[project @ 2005-07-11 15:34:07 by simonmar]
authorsimonmar <unknown>
Mon, 11 Jul 2005 15:34:07 +0000 (15:34 +0000)
committersimonmar <unknown>
Mon, 11 Jul 2005 15:34:07 +0000 (15:34 +0000)
make_constr_itbls: 64-bit fix (size of info table was hardcoded)

ghc/compiler/ghci/ByteCodeItbls.lhs

index 5cc07d6..835fd2a 100644 (file)
@@ -112,7 +112,7 @@ make_constr_itbls cons
                     --putStrLn ("# ptrs  of itbl is " ++ show ptrs)
                     --putStrLn ("# nptrs of itbl is " ++ show nptrs_really)
                     poke addr itbl
-                    return (getName dcon, addr `plusPtr` 8)
+                    return (getName dcon, addr `plusPtr` (2 * wORD_SIZE))
 
 
 -- Make code which causes a jump to the given address.  This is the