diff options
author | Simon Marlow <simonmar@microsoft.com> | 2007-04-27 11:56:35 +0000 |
---|---|---|
committer | Simon Marlow <simonmar@microsoft.com> | 2007-04-27 11:56:35 +0000 |
commit | 47e0b5e52240f8794b117e0dbde4e21f41ffe9ec (patch) | |
tree | 63679a6a6c2e781c20e596e60698aca45a020214 /compiler/codeGen | |
parent | b360a3366d9d9054b0434f5fc64ebe2606b74c17 (diff) | |
download | haskell-47e0b5e52240f8794b117e0dbde4e21f41ffe9ec.tar.gz |
add the constructor name field to the info table for RTS constructors
Diffstat (limited to 'compiler/codeGen')
-rw-r--r-- | compiler/codeGen/CgInfoTbls.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/codeGen/CgInfoTbls.hs b/compiler/codeGen/CgInfoTbls.hs index da480050e0..0d6925b78f 100644 --- a/compiler/codeGen/CgInfoTbls.hs +++ b/compiler/codeGen/CgInfoTbls.hs @@ -21,7 +21,7 @@ module CgInfoTbls ( getConstrTag, infoTable, infoTableClosureType, infoTablePtrs, infoTableNonPtrs, - funInfoTable + funInfoTable, makeRelativeRefTo ) where |