forked from OSchip/llvm-project
[TableGen] Use std::find instead of a manual loop. NFC
llvm-svn: 258017
This commit is contained in:
parent
de47590589
commit
a15226ea51
|
@ -139,9 +139,7 @@ public:
|
|||
/// supported by the target (i.e. there are registers that directly hold it).
|
||||
bool isLegalValueType(MVT::SimpleValueType VT) const {
|
||||
ArrayRef<MVT::SimpleValueType> LegalVTs = getLegalValueTypes();
|
||||
for (unsigned i = 0, e = LegalVTs.size(); i != e; ++i)
|
||||
if (LegalVTs[i] == VT) return true;
|
||||
return false;
|
||||
return std::find(LegalVTs.begin(), LegalVTs.end(), VT) != LegalVTs.end();
|
||||
}
|
||||
|
||||
CodeGenSchedModels &getSchedModels() const;
|
||||
|
|
Loading…
Reference in New Issue