diff options
author | Simon Marlow <simonmar@microsoft.com> | 2007-02-27 13:46:09 +0000 |
---|---|---|
committer | Simon Marlow <simonmar@microsoft.com> | 2007-02-27 13:46:09 +0000 |
commit | b067bdc33ce1a0bb01957b0bcfbb1c516dba53a4 (patch) | |
tree | ca8c9a739185c3714fa795c1924b5bd781c21bbd /rts/sm/Compact.c | |
parent | f38310c9d33a263a610005996f32f3d7d2e25c44 (diff) | |
download | haskell-b067bdc33ce1a0bb01957b0bcfbb1c516dba53a4.tar.gz |
Remove the itbls field of BCO, put itbls in with the literals
This is a simplification & minor optimisation for GHCi
Diffstat (limited to 'rts/sm/Compact.c')
-rw-r--r-- | rts/sm/Compact.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/rts/sm/Compact.c b/rts/sm/Compact.c index 5cef8168f0..62d9152898 100644 --- a/rts/sm/Compact.c +++ b/rts/sm/Compact.c @@ -530,7 +530,6 @@ thread_obj (StgInfoTable *info, StgPtr p) thread_(&bco->instrs); thread_(&bco->literals); thread_(&bco->ptrs); - thread_(&bco->itbls); return p + bco_sizeW(bco); } |