aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Criswell <criswell@uiuc.edu>2004-05-04 21:46:05 +0000
committerJohn Criswell <criswell@uiuc.edu>2004-05-04 21:46:05 +0000
commit4a9c90446d2807ce71fc1b26cccc130e28f10c57 (patch)
tree928bb451773d36db59b22772c2ad42f8e2ec453d
parent7ca6712f814bf7d1eea54455d0a105da68817093 (diff)
Fixed inconsistent indentation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13363 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/VMCore/Verifier.cpp32
1 files changed, 16 insertions, 16 deletions
diff --git a/lib/VMCore/Verifier.cpp b/lib/VMCore/Verifier.cpp
index edd3da1a00..171484133b 100644
--- a/lib/VMCore/Verifier.cpp
+++ b/lib/VMCore/Verifier.cpp
@@ -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;
+ }
}
}