Skip to content

Commit

Permalink
ValueNumberAnalysis: getEntryValueForParameter fixed (the param was
Browse files Browse the repository at this point in the history
incremented instead of p variable)
  • Loading branch information
amaembo committed Oct 8, 2015
1 parent a2feeb1 commit fb11839
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ public ValueNumber getEntryValueForParameter(int param) {
if (p == param) {
return getEntryValue(slotOffset);
}
param++;
p++;
slotOffset += SignatureParser.getNumSlotsForType(paramSig);
}

Expand Down

0 comments on commit fb11839

Please sign in to comment.