[TableGen] Use std::find instead of a manual loop. NFC

llvm-svn: 258017
This commit is contained in:
Craig Topper 2016-01-17 19:51:14 +00:00
parent de47590589
commit a15226ea51
1 changed files with 1 additions and 3 deletions

View File

@ -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;