Now with less tabs!
authorOwen Anderson <resistor@mac.com>
Thu, 1 Nov 2007 03:54:23 +0000 (03:54 +0000)
committerOwen Anderson <resistor@mac.com>
Thu, 1 Nov 2007 03:54:23 +0000 (03:54 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43601 91177308-0d34-0410-b5e6-96231b3b80d8

lib/VMCore/Verifier.cpp

index afb90d44566b1a6b14190d760c8c1b9f4d0ed916..72ceb60abe3a40d5321e880aa1cce0841e055782 100644 (file)
@@ -73,17 +73,17 @@ namespace {  // Anonymous namespace for class
            cl::desc("Reject code with undefined behaviour"));
   
   struct VISIBILITY_HIDDEN PreVerifier : public FunctionPass {
-       static char ID; // Pass ID, replacement for typeid
+    static char ID; // Pass ID, replacement for typeid
        
-       PreVerifier() : FunctionPass((intptr_t)&ID) { }
+    PreVerifier() : FunctionPass((intptr_t)&ID) { }
        
-       bool runOnFunction(Function &F) {
+    bool runOnFunction(Function &F) {
       for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I)
         assert(I->back().isTerminator()
                && "Block does not end with a terminator?");
       
-      return false;
-       }
+        return false;
+    }
   };
   
   char PreVerifier::ID = 0;