diff options
author | simonmar <unknown> | 2005-03-31 09:14:32 +0000 |
---|---|---|
committer | simonmar <unknown> | 2005-03-31 09:14:32 +0000 |
commit | afbd78a3ca2747c667f3fd04fda8c2fc4b11cc77 (patch) | |
tree | 19c3f3131d87d8d725d04f309081c1a4369914ee | |
parent | b5b8ae092870b992b42123431be3cc2830af0e72 (diff) | |
download | haskell-afbd78a3ca2747c667f3fd04fda8c2fc4b11cc77.tar.gz |
[project @ 2005-03-31 09:14:32 by simonmar]
remove extra commas in export list
-rw-r--r-- | ghc/compiler/basicTypes/Literal.lhs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ghc/compiler/basicTypes/Literal.lhs b/ghc/compiler/basicTypes/Literal.lhs index 5a3608bb3e..9aab6ee7f1 100644 --- a/ghc/compiler/basicTypes/Literal.lhs +++ b/ghc/compiler/basicTypes/Literal.lhs @@ -7,14 +7,14 @@ module Literal ( Literal(..) -- Exported to ParseIface , mkMachInt, mkMachWord - , mkMachInt64, mkMachWord64, mkStringLit, + , mkMachInt64, mkMachWord64, mkStringLit , litSize , litIsDupable, litIsTrivial - , literalType, + , literalType , hashLiteral , inIntRange, inWordRange, tARGET_MAX_INT, inCharRange - , isZeroLit, + , isZeroLit , word2IntLit, int2WordLit , narrow8IntLit, narrow16IntLit, narrow32IntLit |