aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;
+ }
}
}