Remove unnecessary 'const' pointed out by David Blaikie.

llvm-svn: 250619
This commit is contained in:
Craig Topper 2015-10-17 18:22:46 +00:00
parent 9008aae8ee
commit 164e34fdb4

View File

@ -340,7 +340,7 @@ static const NEONLdStTableEntry *LookupNEONLdSt(unsigned Opcode) {
}
#endif
const auto I = std::lower_bound(std::begin(NEONLdStTable),
auto I = std::lower_bound(std::begin(NEONLdStTable),
std::end(NEONLdStTable), Opcode);
if (I != std::end(NEONLdStTable) && I->PseudoOpc == Opcode)
return I;