diff options
Diffstat (limited to 'ghc')
-rw-r--r-- | ghc/utils/genprimopcode/Main.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ghc/utils/genprimopcode/Main.hs b/ghc/utils/genprimopcode/Main.hs index fce372e5e4..aaff9c142e 100644 --- a/ghc/utils/genprimopcode/Main.hs +++ b/ghc/utils/genprimopcode/Main.hs @@ -114,7 +114,7 @@ gen_primop_tag (Info defaults pos) = unlines (zipWith f pos [1..]) where f i n = "tagOf_PrimOp " ++ cons i - ++ " = ILIT(" ++ show n ++ ") :: FAST_INT" + ++ " = _ILIT(" ++ show n ++ ") :: FastInt" gen_enum_decl (Info defaults pos) = let conss = map cons pos |