Fix the bug introduced in r281252.
authorDehao Chen <dehao@google.com>
Mon, 12 Sep 2016 20:29:54 +0000 (20:29 +0000)
committerDehao Chen <dehao@google.com>
Mon, 12 Sep 2016 20:29:54 +0000 (20:29 +0000)
llvm-svn: 281253

llvm/lib/CodeGen/CodeGenPrepare.cpp

index fc27f0e..5213f3a 100644 (file)
@@ -4589,7 +4589,7 @@ static Value *getTrueOrFalseValue(
 
   for (SelectInst *DefSI = SI; DefSI != nullptr && Selects.count(DefSI);
        DefSI = dyn_cast<SelectInst>(V)) {
-    assert(DefSI.getCondition() == SI->getCondition() &&
+    assert(DefSI->getCondition() == SI->getCondition() &&
            "The condition of DefSI does not match with SI");
     V = (isTrue ? DefSI->getTrueValue() : DefSI->getFalseValue());
   }