From 4a9c90446d2807ce71fc1b26cccc130e28f10c57 Mon Sep 17 00:00:00 2001 From: John Criswell Date: Tue, 4 May 2004 21:46:05 +0000 Subject: [PATCH] Fixed inconsistent indentation. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13363 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/VMCore/Verifier.cpp | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/lib/VMCore/Verifier.cpp b/lib/VMCore/Verifier.cpp index edd3da1a007..171484133b9 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; + } } }