summaryrefslogtreecommitdiffstats
path: root/llvm/lib/VMCore/Verifier.cpp
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
commit987ad1945d4e5073b7053f738faa2b3c64c86097 (patch)
tree05e0d7464954072562e490f03d78a865378af63c /llvm/lib/VMCore/Verifier.cpp
parentd26074eef19d6766724cffcd68a172bedc9f8843 (diff)
downloadbcm5719-llvm-987ad1945d4e5073b7053f738faa2b3c64c86097.tar.gz
bcm5719-llvm-987ad1945d4e5073b7053f738faa2b3c64c86097.zip
Fixed inconsistent indentation.
llvm-svn: 13363
Diffstat (limited to 'llvm/lib/VMCore/Verifier.cpp')
-rw-r--r--llvm/lib/VMCore/Verifier.cpp32
1 files changed, 16 insertions, 16 deletions
diff --git a/llvm/lib/VMCore/Verifier.cpp b/llvm/lib/VMCore/Verifier.cpp
index edd3da1a007..171484133b9 100644
--- a/llvm/lib/VMCore/Verifier.cpp
+++ b/llvm/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;
+ }
}
}
OpenPOWER on IntegriCloud