From: Matthijs Kooijman Date: Thu, 5 Feb 2009 08:20:34 +0000 (+0100) Subject: Remove the export list from the Alu module. X-Git-Url: https://git.stderr.nl/gitweb?a=commitdiff_plain;h=5d25b51d5dd6749a1b9ec06196a597f72e60782f;p=matthijs%2Fmaster-project%2Fc%CE%BBash.git Remove the export list from the Alu module. 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. --- diff --git a/Alu.hs b/Alu.hs index f444abc..07c0d0d 100644 --- a/Alu.hs +++ b/Alu.hs @@ -1,4 +1,4 @@ -module Alu (main) where +module Alu where import Bits import qualified Sim