[project @ 2003-09-01 12:35:09 by simonpj]
authorsimonpj <unknown>
Mon, 1 Sep 2003 12:35:09 +0000 (12:35 +0000)
committersimonpj <unknown>
Mon, 1 Sep 2003 12:35:09 +0000 (12:35 +0000)
Add a binding for
maxPrimOpTag :: Int
to
primop-tag.hs-incl
with the obvious meaning.

ghc/utils/genprimopcode/Main.hs

index d92d3a9..e486403 100644 (file)
@@ -290,10 +290,12 @@ gen_primop_list (Info defaults entries)
      ) where (first:rest) = filter is_primop entries
 
 gen_primop_tag (Info defaults entries)
-   = unlines (zipWith f (filter is_primop entries) [1..])
+   = unlines (max_def : zipWith f primop_entries [1..])
      where
+       primop_entries = filter is_primop entries
         f i n = "tagOf_PrimOp " ++ cons i 
                 ++ " = _ILIT(" ++ show n ++ ") :: FastInt"
+       max_def = "maxPrimOpTag = " ++ show (length primop_entries) ++ " :: Int"
 
 gen_data_decl (Info defaults entries)
    = let conss = map cons (filter is_primop entries)