aboutsummaryrefslogtreecommitdiff
path: root/llvm
diff options
context:
space:
mode:
authorCraig Topper <craig.topper@intel.com>2020-07-07 00:17:59 -0700
committerCraig Topper <craig.topper@intel.com>2020-07-07 00:18:01 -0700
commitef4cc70f3ed2a91e0a48c6448c517c3ba34c2846 (patch)
tree832a773344307890e275e2c28fb60b8f2f6b14e9 /llvm
parent3cbfe988bc5cd366fb0f62e597f899b489c3834d (diff)
downloadllvm-ef4cc70f3ed2a91e0a48c6448c517c3ba34c2846.zip
llvm-ef4cc70f3ed2a91e0a48c6448c517c3ba34c2846.tar.gz
llvm-ef4cc70f3ed2a91e0a48c6448c517c3ba34c2846.tar.bz2
[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.
Diffstat (limited to 'llvm')
-rw-r--r--llvm/lib/Support/X86TargetParser.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/llvm/lib/Support/X86TargetParser.cpp b/llvm/lib/Support/X86TargetParser.cpp
index 5e4f62d..1218217 100644
--- a/llvm/lib/Support/X86TargetParser.cpp
+++ b/llvm/lib/Support/X86TargetParser.cpp
@@ -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;
}