forked from OSchip/llvm-project
Remove unnecessary 'const' pointed out by David Blaikie.
llvm-svn: 250619
This commit is contained in:
parent
4773763bb0
commit
a2d0635098
|
@ -340,8 +340,8 @@ static const NEONLdStTableEntry *LookupNEONLdSt(unsigned Opcode) {
|
|||
}
|
||||
#endif
|
||||
|
||||
const auto I = std::lower_bound(std::begin(NEONLdStTable),
|
||||
std::end(NEONLdStTable), Opcode);
|
||||
auto I = std::lower_bound(std::begin(NEONLdStTable),
|
||||
std::end(NEONLdStTable), Opcode);
|
||||
if (I != std::end(NEONLdStTable) && I->PseudoOpc == Opcode)
|
||||
return I;
|
||||
return nullptr;
|
||||
|
|
Loading…
Reference in New Issue