diff options
author | simonm <unknown> | 1998-01-09 15:46:56 +0000 |
---|---|---|
committer | simonm <unknown> | 1998-01-09 15:46:56 +0000 |
commit | 49abcf83cf9a5709cf821877e793ad272ea215de (patch) | |
tree | 5432281d3492f0ce2dda664595453ac0c9c32fa9 /ghc/compiler/codeGen | |
parent | 649f4b5f45007c5300e8797628e6fab749b8cf31 (diff) | |
download | haskell-49abcf83cf9a5709cf821877e793ad272ea215de.tar.gz |
[project @ 1998-01-09 15:46:56 by simonm]
protect an import with #ifdef DEBUG.
Diffstat (limited to 'ghc/compiler/codeGen')
-rw-r--r-- | ghc/compiler/codeGen/CgBindery.lhs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ghc/compiler/codeGen/CgBindery.lhs b/ghc/compiler/codeGen/CgBindery.lhs index f21d393b83..9e3040b0b1 100644 --- a/ghc/compiler/codeGen/CgBindery.lhs +++ b/ghc/compiler/codeGen/CgBindery.lhs @@ -44,7 +44,9 @@ import Literal ( Literal ) import Maybes ( catMaybes ) import Name ( isLocallyDefined, isWiredInName, Name{-instance NamedThing-}, NamedThing(..) ) +#ifdef DEBUG import PprAbsC ( pprAmode ) +#endif import PrimRep ( PrimRep ) import StgSyn ( StgArg, StgLiveVars, GenStgArg(..) ) import Unique ( Unique, Uniquable(..) ) |