Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Glasgow Haskell Compiler
GHC
Commits
99c00cd6
Commit
99c00cd6
authored
Jun 05, 1997
by
sof
Browse files
[project @ 1997-06-05 20:49:02 by sof]
updated imports
parent
eaafd723
Changes
3
Hide whitespace changes
Inline
Side-by-side
ghc/compiler/nativeGen/StixInteger.lhs
View file @
99c00cd6
...
...
@@ -12,8 +12,11 @@ module StixInteger (
) where
IMP_Ubiq(){-uitous-}
#if defined(__GLASGOW_HASKELL__) && __GLASGOW_HASKELL__ <= 201
IMPORT_DELOOPER(NcgLoop) ( amodeToStix )
#else
import {-# SOURCE #-} StixPrim ( amodeToStix )
#endif
import MachMisc
#if __GLASGOW_HASKELL__ >= 202
import MachRegs hiding (Addr)
...
...
ghc/compiler/nativeGen/StixMacro.lhs
View file @
99c00cd6
...
...
@@ -8,9 +8,15 @@
module StixMacro ( macroCode, heapCheck ) where
IMP_Ubiq(){-uitious-}
#if defined(__GLASGOW_HASKELL__) && __GLASGOW_HASKELL__ <= 201
IMPORT_DELOOPER(NcgLoop) ( amodeToStix )
#else
import {-# SOURCE #-} StixPrim ( amodeToStix )
#endif
import MachMisc
-- In 2.0x we import Addr via GlaExts, so we better hide the other one here.
#if __GLASGOW_HASKELL__ >= 202
import MachRegs hiding (Addr)
#else
...
...
ghc/compiler/nativeGen/StixPrim.lhs
View file @
99c00cd6
...
...
@@ -8,7 +8,9 @@
module StixPrim ( primCode, amodeToStix, amodeToStix' ) where
IMP_Ubiq(){-uitous-}
#if defined(__GLASGOW_HASKELL__) && __GLASGOW_HASKELL__ <= 201
IMPORT_DELOOPER(NcgLoop) -- paranoia checking only
#endif
import MachMisc
#if __GLASGOW_HASKELL__ >= 202
...
...
@@ -607,4 +609,3 @@ flushStdout = StCall SLIT("fflush") VoidRep [StLitLit SLIT("stdout")]
flushStderr = StCall SLIT("fflush") VoidRep [StLitLit SLIT("stderr")]
errorIO = StJump (StInd PtrRep (sStLitLbl SLIT("ErrorIO_innards")))
\end{code}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment