Fixed inconsistent indentation.
authorJohn Criswell <criswell@uiuc.edu>
Tue, 4 May 2004 21:46:05 +0000 (21:46 +0000)
committerJohn Criswell <criswell@uiuc.edu>
Tue, 4 May 2004 21:46:05 +0000 (21:46 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13363 91177308-0d34-0410-b5e6-96231b3b80d8

lib/VMCore/Verifier.cpp

index edd3da1a0075f917f9b2b931dceb4e1801e05e75..171484133b9a63244d96b8c1890aa06110020f3d 100644 (file)
@@ -136,22 +136,22 @@ namespace {  // Anonymous namespace for class
       if (Broken)
       {
         msgs << "Broken module found, ";
-       switch (action)
-       {
-         case AbortProcessAction:
-           msgs << "compilation aborted!\n";
-           std::cerr << msgs.str();
-           abort();
-         case ThrowExceptionAction:
-           msgs << "verification terminated.\n";
-           throw msgs.str();
-         case PrintMessageAction:
-           msgs << "verification continues.\n";
-           std::cerr << msgs.str();
-           break;
-         case ReturnStatusAction:
-           break;
-       }
+        switch (action)
+        {
+          case AbortProcessAction:
+            msgs << "compilation aborted!\n";
+            std::cerr << msgs.str();
+            abort();
+          case ThrowExceptionAction:
+            msgs << "verification terminated.\n";
+            throw msgs.str();
+          case PrintMessageAction:
+            msgs << "verification continues.\n";
+            std::cerr << msgs.str();
+            break;
+          case ReturnStatusAction:
+            break;
+        }
       }
     }