Show uniques in listBindings output.
authorMatthijs Kooijman <matthijs@stdin.nl>
Mon, 8 Mar 2010 10:54:26 +0000 (11:54 +0100)
committerMatthijs Kooijman <matthijs@stdin.nl>
Mon, 8 Mar 2010 10:54:26 +0000 (11:54 +0100)
cλash/CLasH/Utils/GhcTools.hs

index fc63ac4e9560079185caaa13bba32df694f88d61..d898795c9dbb6107e848f4856cba3015a4ca5d0b 100644 (file)
@@ -35,7 +35,7 @@ listBindings libdir filenames = do
 listBinding :: (CoreSyn.CoreBndr, CoreSyn.CoreExpr) -> IO ()
 listBinding (b, e) = do
   putStr "\nBinder: "
-  putStr $ show b
+  putStr $ show b ++ "[" ++ show (Var.varUnique b) ++ "]"
   putStr "\nType of Binder: \n"
   putStr $ Outputable.showSDoc $ Outputable.ppr $ Var.varType b
   putStr "\n\nExpression: \n"