diff options
author | simonmar <unknown> | 2000-10-12 14:25:35 +0000 |
---|---|---|
committer | simonmar <unknown> | 2000-10-12 14:25:35 +0000 |
commit | 2ee4f4b48b7c13ea121ab37a73fdf238db464b5f (patch) | |
tree | e3d456053c9290aa37567385465c77f47d3fe196 /ghc | |
parent | 40dfb7ac2b32f5ed38249f77c416e413b358df1c (diff) | |
download | haskell-2ee4f4b48b7c13ea121ab37a73fdf238db464b5f.tar.gz |
[project @ 2000-10-12 14:25:35 by simonmar]
update FAST_INT names
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 |