Add some extra tracing to 'identifyFunction'

This commit is contained in:
Tristan Ravitch 2017-11-07 17:49:36 -08:00
parent 65c940e334
commit 48ba00870d

View File

@ -23,7 +23,8 @@ identifyCall :: MC.ArchConstraints ppc
-> MC.RegState (MC.ArchReg ppc) (MC.Value ppc ids)
-> Maybe (Seq.Seq (MC.Stmt ppc ids), MC.ArchSegmentOff ppc)
identifyCall _ mem stmts rs = trace ("identifyCall:\n\n" ++
intercalate "\n" (map show stmts))
intercalate "\n" (map show stmts)) $
trace ("reg state = " ++ show rs) $
Nothing
identifyReturn :: (PPCArchConstraints ppc)