UQ-PAC / BASIL

Apache License 2.0
8 stars 0 forks source link

call graph incorrect predecessor #210

Open sadrabt opened 4 months ago

sadrabt commented 4 months ago

pred is returning procedure b instead of pred(b)

From final def pred(b: Procedure): Set[Procedure] = b.incomingCalls().map(_.target).toSet to final def pred(b: Procedure): Set[Procedure] = b.incomingCalls().map(_.parent.parent).toSet