[project @ 1998-03-19 23:59:17 by simonpj]
[ghc-hetmet.git] / ghc / compiler / basicTypes / PragmaInfo.lhs
diff --git a/ghc/compiler/basicTypes/PragmaInfo.lhs b/ghc/compiler/basicTypes/PragmaInfo.lhs
deleted file mode 100644 (file)
index 874a7f3..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-%
-% (c) The AQUA Project, Glasgow University, 1996
-%
-\section[PragmaInfo]{@PragmaInfos@: The user's pragma requests}
-
-\begin{code}
-module PragmaInfo where
-
-#include "HsVersions.h"
-
-\end{code}
-
-\begin{code}
-data PragmaInfo
-  = NoPragmaInfo
-
-  | IWantToBeINLINEd
-
-  | IMustNotBeINLINEd  -- Used by the simplifier to prevent looping
-                       -- on recursive definitions
-
-  | IMustBeINLINEd     -- Absolutely must inline; used for PrimOps only
-\end{code}