tweak toString()

git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@2382 f5eafffb-2e1d-0410-98e4-8ec43c5233c4
This commit is contained in:
sjfink 2008-01-14 16:39:17 +00:00
parent 985c37f7d0
commit 052457b9fd
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ public class NormalStatement extends Statement {
@Override
public String toString() {
return "NORMAL " + getNode().getMethod().getSignature() + ":" + getInstruction().toString();
return "NORMAL " + getNode().getMethod().getName() + ":" + getInstruction().toString() + " " + getNode();
}
public SSAInstruction getInstruction() {