Allow name hints to be set for a signal.
[matthijs/master-project/cλash.git] / Translator.hs
index 1a753c2d52b592af9dbc50811bf90b5330f35702..26cf79d7bb0c86d00a0ddde95ebdb11ec616cb54 100644 (file)
@@ -221,7 +221,7 @@ nameFlatFunction hsfunc fdata =
     -- Name the signals in all other functions
     Just flatfunc ->
       let s = flat_sigs flatfunc in
-      let s' = map (\(id, (SignalInfo Nothing use ty)) -> (id, SignalInfo (Just $ "sig_" ++ (show id)) use ty)) s in
+      let s' = map (\(id, (SignalInfo Nothing use ty hints)) -> (id, SignalInfo (Just $ "sig_" ++ (show id)) use ty hints)) s in
       let flatfunc' = flatfunc { flat_sigs = s' } in
       setFlatFunc hsfunc flatfunc'