add a comment

git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@2742 f5eafffb-2e1d-0410-98e4-8ec43c5233c4
This commit is contained in:
sjfink 2008-04-03 12:24:56 +00:00
parent 589575f23c
commit 3f3d55e9b8
1 changed files with 5 additions and 1 deletions

View File

@ -458,7 +458,11 @@ public abstract class IR {
}
/**
* Return the instruction indices corresponding to a call site
* Return the instruction indices corresponding to a call site.
*
* Note that Shrike may inline JSRS. This can lead to multiple copies of a single bytecode
* instruction in a particular IR. So we may have more than one instruction index for a
* particular call site from bytecode.
*/
public IntSet getCallInstructionIndices(CallSiteReference site) {
if (site == null) {