commit | 70b391864d75845e0537ad16a4b6a581aafcf592 | [log] [tgz] |
---|---|---|
author | Philip Reames <listmail@philipreames.com> | Sat Feb 27 05:18:30 2016 +0000 |
committer | Philip Reames <listmail@philipreames.com> | Sat Feb 27 05:18:30 2016 +0000 |
tree | 465bf9ffd7f14e8ee3bacf5ce37f97bcc37b41a3 | |
parent | ad8cb382fa6d0bcc0359d99a3ddec381c218ba89 [diff] |
Suppress an uncovered switch warning [NFC] llvm-svn: 262109
diff --git a/llvm/lib/Analysis/LazyValueInfo.cpp b/llvm/lib/Analysis/LazyValueInfo.cpp index e5d5941..b2ce163 100644 --- a/llvm/lib/Analysis/LazyValueInfo.cpp +++ b/llvm/lib/Analysis/LazyValueInfo.cpp
@@ -977,6 +977,7 @@ // that input doesn't include C + C2. ConstantInt *CIAdded; switch (Pred) { + default: break; case ICmpInst::ICMP_EQ: if (match(SI->getFalseValue(), m_Add(m_Specific(A), m_ConstantInt(CIAdded)))) {