7f4693697741d6aff0f608054eaf6cf5b48c9a69
[ghc-hetmet.git] / ghc / compiler / main / LoopHack.lhc
1 This dreadful little .hc file accounts for the fact that,
2 when profiling, modules that import (say) IdLoop will
3 try to register the _regIdLoop cost centre.  But there is
4 no IdLoop module really, so it generates unresolved
5 references by the ton.  
6
7 What we do here is simply to satisfy the unresolved references
8
9 \begin{code}
10
11 STGFUN(_regUbiq){}
12 STGFUN(_regAbsCLoop){}
13 STGFUN(_regNcgLoop){}
14 STGFUN(_regDsLoop){}
15 STGFUN(_regIdLoop){}
16 STGFUN(_regPrelLoop){}
17 STGFUN(_regSmplLoop){}
18 STGFUN(_regTyLoop){}
19 STGFUN(_regHsLoop){}
20 STGFUN(_regSpecLoop){}
21 STGFUN(_regTcMLoop){}
22 STGFUN(_regTcLoop){}
23 STGFUN(_regRnLoop){}
24 STGFUN(_regCgLoop1){}
25 STGFUN(_regCgLoop2){}
26
27 \end{code}