implement isReturn()

git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@3021 f5eafffb-2e1d-0410-98e4-8ec43c5233c4
This commit is contained in:
msridhar1 2008-09-03 13:23:09 +00:00
parent 06476f982f
commit 3a50031b05
1 changed files with 1 additions and 2 deletions

View File

@ -256,8 +256,7 @@ public class BackwardsSupergraph<T, P> implements ISupergraph<T, P> {
* @see com.ibm.wala.dataflow.IFDS.ISupergraph#isReturn(java.lang.Object)
*/
public boolean isReturn(T n) throws UnimplementedError {
Assertions.UNREACHABLE();
return false;
return delegate.isCall(n);
}
/*