Fix indentation.

llvm-svn: 87319
diff --git a/safecode/lib/ArrayBoundChecks/ArrayBoundCheck.cpp b/safecode/lib/ArrayBoundChecks/ArrayBoundCheck.cpp
index 948556d..7342c53 100755
--- a/safecode/lib/ArrayBoundChecks/ArrayBoundCheck.cpp
+++ b/safecode/lib/ArrayBoundChecks/ArrayBoundCheck.cpp
@@ -768,16 +768,16 @@
       MemAccessInstListType MemAccessInstList = fMap[&F]->getMemAccessInstList();
       MemAccessInstListIt maI = MemAccessInstList.begin(), maE = MemAccessInstList.end();
       for (; maI != maE; ++maI) {
-	ABCExprTree *root = fMap[&F]->getSafetyConstraint(maI->first);
-	ABCExprTree * argConstraints = 0;
-	if (maI->second) {
-	  argConstraints = getArgumentConstraints(F);
-	}
-	if (argConstraints) {
-	  root = new ABCExprTree(root,argConstraints,"&&");
-	}
-	//omega stuff should go in here.
-	Omega(maI->first,root);
+        ABCExprTree *root = fMap[&F]->getSafetyConstraint(maI->first);
+        ABCExprTree * argConstraints = 0;
+        if (maI->second) {
+          argConstraints = getArgumentConstraints(F);
+        }
+        if (argConstraints) {
+          root = new ABCExprTree(root,argConstraints,"&&");
+        }
+        //omega stuff should go in here.
+        Omega(maI->first,root);
       }
     }
   }