diff options
author | Simon Marlow <simonmar@microsoft.com> | 2007-04-17 09:25:26 +0000 |
---|---|---|
committer | Simon Marlow <simonmar@microsoft.com> | 2007-04-17 09:25:26 +0000 |
commit | 6e9450db95482a72b2c9659ab0e9324260aa3f56 (patch) | |
tree | a0497f1e52b1089422f7ea1dbabde7f24b4a8b8a /includes | |
parent | 51d7a92b232199ead61a484394283f7183612e18 (diff) | |
download | haskell-6e9450db95482a72b2c9659ab0e9324260aa3f56.tar.gz |
con_desc should be an OFFSET_FIELD
Diffstat (limited to 'includes')
-rw-r--r-- | includes/InfoTables.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/includes/InfoTables.h b/includes/InfoTables.h index 9b73aa593c..77171f1bc0 100644 --- a/includes/InfoTables.h +++ b/includes/InfoTables.h @@ -388,7 +388,8 @@ typedef struct _StgConInfoTable { StgInfoTable i; #endif -char *con_desc; /* the name of the data constructor as: Package:Module.Name */ + OFFSET_FIELD(con_desc) // the name of the data constructor + // as: Package:Module.Name #if defined(TABLES_NEXT_TO_CODE) StgInfoTable i; |