mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-10 05:41:40 +00:00
Remove unnecessary 'const' pointed out by David Blaikie.
llvm-svn: 250619
This commit is contained in:
parent
9008aae8ee
commit
164e34fdb4
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user