summaryrefslogtreecommitdiff
path: root/ghc/interpreter/compiler.c
diff options
context:
space:
mode:
authorsewardj <unknown>1999-06-07 17:22:54 +0000
committersewardj <unknown>1999-06-07 17:22:54 +0000
commit820f09b2c2550f88aa0192442c1c62bb00d62d38 (patch)
treee064a0cb877b113d4dabe4efff14ceeb2b08d729 /ghc/interpreter/compiler.c
parentc6b12cd91b225a3692a02d76c00dd4a1806a6bab (diff)
downloadhaskell-820f09b2c2550f88aa0192442c1c62bb00d62d38.tar.gz
[project @ 1999-06-07 17:22:31 by sewardj]
Many changes needed to support loading of GHC compiled code. The main changes are to parser.y and interface.c to load .hi files and create appropriate symbol table entries. Also, interface.c has the beginnings of and ELF loader/linker in it.
Diffstat (limited to 'ghc/interpreter/compiler.c')
-rw-r--r--ghc/interpreter/compiler.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ghc/interpreter/compiler.c b/ghc/interpreter/compiler.c
index 112ae6d319..97e3eef3a0 100644
--- a/ghc/interpreter/compiler.c
+++ b/ghc/interpreter/compiler.c
@@ -10,8 +10,8 @@
* in the distribution for details.
*
* $RCSfile: compiler.c,v $
- * $Revision: 1.6 $
- * $Date: 1999/04/27 10:06:48 $
+ * $Revision: 1.7 $
+ * $Date: 1999/06/07 17:22:46 $
* ------------------------------------------------------------------------*/
#include "prelude.h"
@@ -181,7 +181,7 @@ Cell e; {
nv));
}
- default : internal("translate");
+ default : fprintf(stderr, "stuff=%d\n",whatIs(e));internal("translate");
}
return e;
}