summaryrefslogtreecommitdiff
path: root/compiler/GHC/CmmToAsm.hs-boot
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/GHC/CmmToAsm.hs-boot')
-rw-r--r--compiler/GHC/CmmToAsm.hs-boot16
1 files changed, 16 insertions, 0 deletions
diff --git a/compiler/GHC/CmmToAsm.hs-boot b/compiler/GHC/CmmToAsm.hs-boot
new file mode 100644
index 0000000000..dd6a87a9ad
--- /dev/null
+++ b/compiler/GHC/CmmToAsm.hs-boot
@@ -0,0 +1,16 @@
+module GHC.CmmToAsm
+where
+
+import GHC.Prelude
+
+import GHC.IO.Handle.Types
+import GHC.CmmToAsm.Config
+import GHC.Types.Unique.Supply
+import GHC.Utils.Logger
+import GHC.Unit.Module.Location
+import GHC.Data.Stream
+import GHC.Cmm
+
+nativeCodeGen :: forall a . Logger -> NCGConfig -> ModLocation -> Handle -> UniqSupply
+ -> Stream IO RawCmmGroup a
+ -> IO a