summaryrefslogtreecommitdiff
path: root/rts/LinkerInternals.h
diff options
context:
space:
mode:
authorSimon Marlow <marlowsd@gmail.com>2008-08-04 11:18:01 +0000
committerSimon Marlow <marlowsd@gmail.com>2008-08-04 11:18:01 +0000
commit8a0ecec80d684468a4080f5852521b3ef0a60958 (patch)
treeedfbc92796a3f7091f1567b83ab81e9e722ee0ab /rts/LinkerInternals.h
parentc79f08fa35772ea6294bacecbe2bd14ee50c6a94 (diff)
downloadhaskell-8a0ecec80d684468a4080f5852521b3ef0a60958.tar.gz
UNDO: FIX #2375: remove oc->lochash completely, it apparently isn't used
Diffstat (limited to 'rts/LinkerInternals.h')
-rw-r--r--rts/LinkerInternals.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/rts/LinkerInternals.h b/rts/LinkerInternals.h
index 561a224a09..f081e62894 100644
--- a/rts/LinkerInternals.h
+++ b/rts/LinkerInternals.h
@@ -85,6 +85,9 @@ typedef struct _ObjectCode {
list. */
Section* sections;
+ /* A private hash table for local symbols. */
+ HashTable* lochash;
+
/* Allow a chain of these things */
struct _ObjectCode * next;