From 3f3d55e9b8ab2df3fb371f67cc5f636fb72c5486 Mon Sep 17 00:00:00 2001 From: sjfink Date: Thu, 3 Apr 2008 12:24:56 +0000 Subject: [PATCH] add a comment git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@2742 f5eafffb-2e1d-0410-98e4-8ec43c5233c4 --- com.ibm.wala.core/src/com/ibm/wala/ssa/IR.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/com.ibm.wala.core/src/com/ibm/wala/ssa/IR.java b/com.ibm.wala.core/src/com/ibm/wala/ssa/IR.java index 228b5ec5f..7785439ca 100644 --- a/com.ibm.wala.core/src/com/ibm/wala/ssa/IR.java +++ b/com.ibm.wala.core/src/com/ibm/wala/ssa/IR.java @@ -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) {