fb02b0adb263574f52934ba5e2b8121bf14493a2
[ghc-hetmet.git] / ghc / compiler / basicTypes / PragmaInfo.lhs
1 %
2 % (c) The AQUA Project, Glasgow University, 1996
3 %
4 \section[PragmaInfo]{@PragmaInfos@: The user's pragma requests}
5
6 \begin{code}
7 #include "HsVersions.h"
8
9 module PragmaInfo where
10
11 import Ubiq
12 \end{code}
13
14 \begin{code}
15 data PragmaInfo
16   = NoPragmaInfo
17   | IWantToBeINLINEd
18 \end{code}