[X86] Remove assert for missing features from X86::getImpliedFeatures

This is failing on the bots. Remove while I try to figure out
what feature I missed in the table.
This commit is contained in:
Craig Topper 2020-07-07 00:17:59 -07:00
parent 3cbfe988bc
commit ef4cc70f3e
1 changed files with 0 additions and 2 deletions

View File

@ -558,8 +558,6 @@ void llvm::X86::getImpliedFeatures(
auto I = llvm::find_if(
FeatureInfos, [&](const FeatureInfo &FI) { return FI.Name == Feature; });
if (I == std::end(FeatureInfos)) {
// This shouldn't happen, but handle it gracefully for release builds.
assert(false && "Feature not in table!");
return;
}