Remove break after return.

llvm-svn: 272046
This commit is contained in:
Rui Ueyama 2016-06-07 19:10:51 +00:00
parent 8424280eef
commit 3621857eac
1 changed files with 0 additions and 2 deletions

View File

@ -1578,10 +1578,8 @@ uint64_t ARMTargetInfo::getImplicitAddend(const uint8_t *Buf,
case R_ARM_GOT_PREL:
case R_ARM_REL32:
return SignExtend64<32>(read32le(Buf));
break;
case R_ARM_PREL31:
return SignExtend64<31>(read32le(Buf));
break;
case R_ARM_CALL:
case R_ARM_JUMP24:
case R_ARM_PC24: