From: simonmar Date: Fri, 7 Mar 2003 11:22:06 +0000 (+0000) Subject: [project @ 2003-03-07 11:22:06 by simonmar] X-Git-Tag: Approx_11550_changesets_converted~1085 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=536087b8565252f54a7c1b33d1ba85a76aef7249;p=ghc-hetmet.git [project @ 2003-03-07 11:22:06 by simonmar] Oops, byteCodeGen should get the bindings from CorePrep, not CoreTidy (should fix last night's GHCi breakage). --- diff --git a/ghc/compiler/main/HscMain.lhs b/ghc/compiler/main/HscMain.lhs index cad46c4..23f00c9 100644 --- a/ghc/compiler/main/HscMain.lhs +++ b/ghc/compiler/main/HscMain.lhs @@ -353,7 +353,7 @@ hscBackEnd dflags HscInterpreted -> #ifdef GHCI do ----------------- Generate byte code ------------------ - comp_bc <- byteCodeGen dflags core_binds type_env + comp_bc <- byteCodeGen dflags prepd_binds type_env ------------------ Create f-x-dynamic C-side stuff --- (istub_h_exists, istub_c_exists)