summaryrefslogtreecommitdiff
path: root/ghc/compiler/javaGen/PrintJava.lhs
diff options
context:
space:
mode:
authorandy <unknown>2000-06-06 21:55:30 +0000
committerandy <unknown>2000-06-06 21:55:30 +0000
commit048b88542b8df8043a02ef2c04ab59b7ba271737 (patch)
tree22ed3f5b6649f546e6b63b1ad0c662fbb28063b6 /ghc/compiler/javaGen/PrintJava.lhs
parent9a2de9c08132edca3a63011afd28009408188a1c (diff)
downloadhaskell-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.lhs2
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)
}