blob: e504a6a9ba4470f55707bddea37688738ca988f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
\begin{code}
module CgBindery where
import VarEnv( IdEnv )
data CgIdInfo
data VolatileLoc
data StableLoc
type CgBindings = IdEnv CgIdInfo
nukeVolatileBinds :: CgBindings -> CgBindings
\end{code}
|