From: Matthijs Kooijman Date: Thu, 29 Jan 2009 16:47:45 +0000 (+0100) Subject: Swap argument order on findBind. X-Git-Url: https://git.stderr.nl/gitweb?a=commitdiff_plain;h=ac4f2be196c43f1ec0e1a9485f09afc239abfbe3;hp=ae1328b9d0650254a02556466961749b528a6d7a;p=matthijs%2Fmaster-project%2Fc%CE%BBash.git Swap argument order on findBind. --- diff --git a/Translator.hs b/Translator.hs index 338d16f..705b552 100644 --- a/Translator.hs +++ b/Translator.hs @@ -44,7 +44,7 @@ main = --core <- GHC.compileToCoreSimplified "Adders.hs" core <- GHC.compileToCoreSimplified "Adders.hs" liftIO $ printBinds (cm_binds core) - let bind = findBind "full_adder" (cm_binds core) + let bind = Maybe.fromJust $ findBind (cm_binds core) "full_adder" let NonRec var expr = bind -- Turn bind into VHDL let vhdl = State.evalState (mkVHDL bind) (VHDLSession 0 builtin_funcs) @@ -84,15 +84,15 @@ printBind' (b, expr) = do --putStr $ showSDoc $ ppr expr putStr "\n" -findBind :: String -> [CoreBind] -> CoreBind -findBind lookfor = +findBind :: [CoreBind] -> String -> Maybe CoreBind +findBind binds lookfor = -- This ignores Recs and compares the name of the bind with lookfor, -- disregarding any namespaces in OccName and extra attributes in Name and -- Var. - Maybe.fromJust . find (\b -> case b of + find (\b -> case b of Rec l -> False NonRec var _ -> lookfor == (occNameString $ nameOccName $ getName var) - ) + ) binds getPortMapEntry :: SignalNameMap AST.VHDLId -- The port name to bind to