// Push the result from the outer method stack on the vstack
if (inlinedMethodInfo != null) {
inlinedMethodInfo.pushOuterMethodStack(ifac, vstack);
}
// Push the items on the vstack the result from a previous basic block.
final TypeStack tstack = bb.getStartStack();
vstack.pushAll(ifac, tstack);
if (debug) {
BootLogInstance.get().debug("-- VStack: " + vstack.toString());
}