Detabify.
authorNick Lewycky <nicholas@mxc.ca>
Tue, 6 May 2014 00:46:20 +0000 (00:46 +0000)
committerNick Lewycky <nicholas@mxc.ca>
Tue, 6 May 2014 00:46:20 +0000 (00:46 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@208019 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Scalar/TailRecursionElimination.cpp

index 64fdae1c58063a67a1ae9740d18e3380a8394f8c..65427f261e7f688536d49eac0261ea54c34e26ba 100644 (file)
@@ -204,7 +204,7 @@ struct AllocaDerivedValueTracker {
         continue;
       }
       case Instruction::Store: {
-       if (U->getOperandNo() == 0)
+        if (U->getOperandNo() == 0)
           EscapePoints.insert(I);
         continue;  // Stores have no users to analyze.
       }
@@ -216,7 +216,7 @@ struct AllocaDerivedValueTracker {
         break;
       default:
         EscapePoints.insert(I);
-       break;
+        break;
       }
 
       AddUsesToWorklist(I);