ASTNode node = instr.getNode();
// get regular results before looking up root instruction
// to switch to surrounding method, if necessary
// (driver.tac could be null or outdated otherwise)
final IResult<LE> nodeResults = getLabeledResultsBefore(node);
final TACInstruction rootInstr = this.driver.tac.instruction(node);
if(rootInstr == instr) {
// usual case: only one instruction for this node
// return regular results
return nodeResults;
}