From: simonpj Date: Wed, 5 Feb 2003 11:42:08 +0000 (+0000) Subject: [project @ 2003-02-05 11:42:08 by simonpj] X-Git-Tag: Approx_11550_changesets_converted~1203 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;ds=sidebyside;h=672182439925a12ddfe73a0651b47fe67654180f;p=ghc-hetmet.git [project @ 2003-02-05 11:42:08 by simonpj] Remove more usage-analysis stuff --- diff --git a/ghc/compiler/Makefile b/ghc/compiler/Makefile index 328b926..f5bc1db 100644 --- a/ghc/compiler/Makefile +++ b/ghc/compiler/Makefile @@ -427,7 +427,6 @@ PRIMOP_BITS=primop-data-decl.hs-incl \ primop-needs-wrapper.hs-incl \ primop-can-fail.hs-incl \ primop-strictness.hs-incl \ - primop-usage.hs-incl \ primop-primop-info.hs-incl CLEAN_FILES += prelude/primops.txt @@ -462,11 +461,14 @@ primop-can-fail.hs-incl: prelude/primops.txt $(GENPOC) --can-fail < $< > $@ primop-strictness.hs-incl: prelude/primops.txt $(GENPOC) --strictness < $< > $@ -primop-usage.hs-incl: prelude/primops.txt - $(GENPOC) --usage < $< > $@ primop-primop-info.hs-incl: prelude/primops.txt $(GENPOC) --primop-primop-info < $< > $@ +# Usages aren't used any more; but the generator +# can still generate them if we want them back +primop-usage.hs-incl: prelude/primops.txt + $(GENPOC) --usage < $< > $@ + # ----------------------------------------------------------------------------