Remove tabs I added.
authorNick Lewycky <nicholas@mxc.ca>
Sun, 20 Sep 2009 05:47:45 +0000 (05:47 +0000)
committerNick Lewycky <nicholas@mxc.ca>
Sun, 20 Sep 2009 05:47:45 +0000 (05:47 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82369 91177308-0d34-0410-b5e6-96231b3b80d8

lib/VMCore/ConstantFold.cpp

index 946ff5cd5f1f2befcd012aedf6819e047ae76e0d..8c65b56357029cfb9ea1be43075448fcc955c254 100644 (file)
@@ -1572,33 +1572,33 @@ Constant *llvm::ConstantFoldCompareInstruction(LLVMContext &Context,
     case ICmpInst::ICMP_ULT:
       switch (pred) {
       case ICmpInst::ICMP_ULT: case ICmpInst::ICMP_NE: case ICmpInst::ICMP_ULE:
-       Result = 1; break;
+        Result = 1; break;
       case ICmpInst::ICMP_UGT: case ICmpInst::ICMP_EQ: case ICmpInst::ICMP_UGE:
-       Result = 0; break;
+        Result = 0; break;
       }
       break;
     case ICmpInst::ICMP_SLT:
       switch (pred) {
       case ICmpInst::ICMP_SLT: case ICmpInst::ICMP_NE: case ICmpInst::ICMP_SLE:
-       Result = 1; break;
+        Result = 1; break;
       case ICmpInst::ICMP_SGT: case ICmpInst::ICMP_EQ: case ICmpInst::ICMP_SGE:
-       Result = 0; break;
+        Result = 0; break;
       }
       break;
     case ICmpInst::ICMP_UGT:
       switch (pred) {
       case ICmpInst::ICMP_UGT: case ICmpInst::ICMP_NE: case ICmpInst::ICMP_UGE:
-       Result = 1; break;
+        Result = 1; break;
       case ICmpInst::ICMP_ULT: case ICmpInst::ICMP_EQ: case ICmpInst::ICMP_ULE:
-       Result = 0; break;
+        Result = 0; break;
       }
       break;
     case ICmpInst::ICMP_SGT:
       switch (pred) {
       case ICmpInst::ICMP_SGT: case ICmpInst::ICMP_NE: case ICmpInst::ICMP_SGE:
-       Result = 1; break;
+        Result = 1; break;
       case ICmpInst::ICMP_SLT: case ICmpInst::ICMP_EQ: case ICmpInst::ICMP_SLE:
-       Result = 0; break;
+        Result = 0; break;
       }
       break;
     case ICmpInst::ICMP_ULE: