diff options
author | Simon Marlow <marlowsd@gmail.com> | 2008-08-04 11:18:01 +0000 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2008-08-04 11:18:01 +0000 |
commit | 8a0ecec80d684468a4080f5852521b3ef0a60958 (patch) | |
tree | edfbc92796a3f7091f1567b83ab81e9e722ee0ab /rts/LinkerInternals.h | |
parent | c79f08fa35772ea6294bacecbe2bd14ee50c6a94 (diff) | |
download | haskell-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.h | 3 |
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; |