Remove commented line from earlier debugging.
authorNick Lewycky <nicholas@mxc.ca>
Sun, 5 Nov 2006 14:19:40 +0000 (14:19 +0000)
committerNick Lewycky <nicholas@mxc.ca>
Sun, 5 Nov 2006 14:19:40 +0000 (14:19 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31460 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Scalar/PredicateSimplifier.cpp

index b47afbd605148e465ff47bcc04a2df27a5bd8a41..ca2762cac713be21c78c7af28c7ca72ab7d02063 100644 (file)
@@ -427,8 +427,6 @@ namespace {
           // "setlt/gt int %a, %b" EQ true  then %a NE %b
           // "setlt/gt int %a, %b" NE false then %a NE %b
 
-          // "setlt int %a, %b" NE true then %a EQ %b
-
           if (ConstantBool *CB = dyn_cast<ConstantBool>(V1)) {
             if (CB->getValue() ^ Opcode==NE)
               addNotEqual(BO->getOperand(0), BO->getOperand(1));