diff options
author | andy <unknown> | 2000-06-06 21:55:30 +0000 |
---|---|---|
committer | andy <unknown> | 2000-06-06 21:55:30 +0000 |
commit | 048b88542b8df8043a02ef2c04ab59b7ba271737 (patch) | |
tree | 22ed3f5b6649f546e6b63b1ad0c662fbb28063b6 /ghc/compiler/javaGen/PrintJava.lhs | |
parent | 9a2de9c08132edca3a63011afd28009408188a1c (diff) | |
download | haskell-048b88542b8df8043a02ef2c04ab59b7ba271737.tar.gz |
[project @ 2000-06-06 21:55:30 by andy]
More wibbles towards compiling data constructors and unboxing correctly.
Diffstat (limited to 'ghc/compiler/javaGen/PrintJava.lhs')
-rw-r--r-- | ghc/compiler/javaGen/PrintJava.lhs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/ghc/compiler/javaGen/PrintJava.lhs b/ghc/compiler/javaGen/PrintJava.lhs index 29eebd9400..3acd84c774 100644 --- a/ghc/compiler/javaGen/PrintJava.lhs +++ b/ghc/compiler/javaGen/PrintJava.lhs @@ -214,9 +214,7 @@ call e n es = e <> dot <> n <> parens (hsep (punctuate comma (map expr es))) literal = \l -> case l of { IntLit i -> text (show i) - ; UIntLit i -> text (show i) ; CharLit c -> text (show c) - ; UCharLit c -> text (show c) ; StringLit s -> text (show s) } |