From 322815e79d6b06b376cb6b066c2c600dcf6f4564 Mon Sep 17 00:00:00 2001 From: simonpj Date: Thu, 10 Apr 2003 14:43:52 +0000 Subject: [PATCH] [project @ 2003-04-10 14:43:52 by simonpj] comments --- ghc/compiler/hsSyn/HsLit.lhs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ghc/compiler/hsSyn/HsLit.lhs b/ghc/compiler/hsSyn/HsLit.lhs index 03dd717..0d90098 100644 --- a/ghc/compiler/hsSyn/HsLit.lhs +++ b/ghc/compiler/hsSyn/HsLit.lhs @@ -33,7 +33,9 @@ data HsLit -- and from TRANSLATION | HsIntPrim Integer -- Unboxed Int | HsInteger Integer -- Genuinely an integer; arises only from TRANSLATION + -- (overloaded literals are done with HsOverLit) | HsRat Rational Type -- Genuinely a rational; arises only from TRANSLATION + -- (overloaded literals are done with HsOverLit) | HsFloatPrim Rational -- Unboxed Float | HsDoublePrim Rational -- Unboxed Double | HsLitLit FastString PostTcType -- to pass ``literal literals'' through to C -- 1.7.10.4