// Compute this only once, it's expensive
unsigned UserOffset = GetOffsetOf(UserMI) + (isThumb ? 4 : 8);
- // Special cases: LEApcrel and tLEApcrel are two instructions MI's. The
- // actual user is the second instruction.
- if (UserMI->getOpcode() == ARM::LEApcrel)
- UserOffset += 4;
- else if (UserMI->getOpcode() == ARM::tLEApcrel)
+ // Special case: tLEApcrel are two instructions MI's. The actual user is the
+ // second instruction.
+ if (UserMI->getOpcode() == ARM::tLEApcrel)
UserOffset += 2;
// See if the current entry is within range, or there is a clone of it