Reorder comments to put them the right way around.
authorNick Lewycky <nicholas@mxc.ca>
Tue, 8 Mar 2011 06:29:47 +0000 (06:29 +0000)
committerNick Lewycky <nicholas@mxc.ca>
Tue, 8 Mar 2011 06:29:47 +0000 (06:29 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@127220 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/InstCombine/InstCombineCompares.cpp

index 108806a82b7668fcd8e429fbdf6fe027a6c69fb9..8787e2ae0e02e19a7639aff5e43c7e134419f1c8 100644 (file)
@@ -2315,11 +2315,11 @@ Instruction *InstCombiner::visitICmpInst(ICmpInst &I) {
       return new ICmpInst(Pred, D, B);
 
     BinaryOperator *SRem = NULL;
-    // icmp Y, (srem X, Y)
+    // icmp (srem X, Y), Y
     if (BO0 && BO0->getOpcode() == Instruction::SRem &&
         Op1 == BO0->getOperand(1))
       SRem = BO0;
-    // icmp (srem X, Y), Y
+    // icmp Y, (srem X, Y)
     else if (BO1 && BO1->getOpcode() == Instruction::SRem &&
              Op0 == BO1->getOperand(1))
       SRem = BO1;