[GISel]: Fix base case for m_any_of PatternMatcher.
authorAditya Nandakumar <aditya_nandakumar@apple.com>
Fri, 23 Feb 2018 01:01:59 +0000 (01:01 +0000)
committerAditya Nandakumar <aditya_nandakumar@apple.com>
Fri, 23 Feb 2018 01:01:59 +0000 (01:01 +0000)
The base case for any_of was incorrectly returning true. Also add test
case which uses m_any_of(preds...) where none of the predicates are
true.

llvm-svn: 325848

llvm/include/llvm/CodeGen/GlobalISel/MIPatternMatch.h
llvm/unittests/CodeGen/GlobalISel/PatternMatchTest.cpp

index 8adeb49..e330221 100644 (file)
@@ -93,7 +93,7 @@ struct And<Pred, Preds...> : And<Preds...> {
 template <typename... Preds> struct Or {
   template <typename MatchSrc>
   bool match(MachineRegisterInfo &MRI, MatchSrc &&src) {
-    return true;
+    return false;
   }
 };
 
index b428101..aa18527 100644 (file)
@@ -368,6 +368,12 @@ TEST(PatternMatchInstr, MatchCombinators) {
   ASSERT_TRUE(match);
   ASSERT_EQ(Src0, Copies[0]);
   ASSERT_EQ(Src1, Copies[1]);
+
+  // Match a case where none of the predicates hold true.
+  match = mi_match(
+      MIBAdd->getOperand(0).getReg(), MRI,
+      m_any_of(m_SpecificType(LLT::scalar(16)), m_GSub(m_Reg(), m_Reg())));
+  ASSERT_FALSE(match);
 }
 } // namespace