Remove the export list from the Alu module.
authorMatthijs Kooijman <matthijs@stdin.nl>
Thu, 5 Feb 2009 08:20:34 +0000 (09:20 +0100)
committerMatthijs Kooijman <matthijs@stdin.nl>
Thu, 5 Feb 2009 08:20:34 +0000 (09:20 +0100)
This means to export all functions in the module. Previously, it seems
that the alu function was inlined everywhere and thus dropped from the
function list.

Alu.hs

diff --git a/Alu.hs b/Alu.hs
index f444abc9fbf950d18d71cbc5aae3afd3e4a1c8ea..07c0d0dfb076b46e0725ad4400698b12f41a616f 100644 (file)
--- a/Alu.hs
+++ b/Alu.hs
@@ -1,4 +1,4 @@
-module Alu (main) where
+module Alu  where
 import Bits
 import qualified Sim