diff options
author | Owen Anderson <resistor@mac.com> | 2007-11-01 03:54:23 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2007-11-01 03:54:23 +0000 |
commit | 765d64501ce0f3f2b074f0bb51159eb892d4bd9e (patch) | |
tree | 48c1ce3dfef0f678148d2c79065aa4e19771bbb9 | |
parent | df17df864f9b45815952351943f71adb9601756a (diff) |
Now with less tabs!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43601 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/VMCore/Verifier.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/VMCore/Verifier.cpp b/lib/VMCore/Verifier.cpp index afb90d4456..72ceb60abe 100644 --- a/lib/VMCore/Verifier.cpp +++ b/lib/VMCore/Verifier.cpp @@ -73,17 +73,17 @@ namespace { // Anonymous namespace for class cl::desc("Reject code with undefined behaviour")); struct VISIBILITY_HIDDEN PreVerifier : public FunctionPass { - static char ID; // Pass ID, replacement for typeid + static char ID; // Pass ID, replacement for typeid - PreVerifier() : FunctionPass((intptr_t)&ID) { } + PreVerifier() : FunctionPass((intptr_t)&ID) { } - bool runOnFunction(Function &F) { + bool runOnFunction(Function &F) { for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I) assert(I->back().isTerminator() && "Block does not end with a terminator?"); - return false; - } + return false; + } }; char PreVerifier::ID = 0; |