diff options
Diffstat (limited to 'llvm/lib/VMCore')
-rw-r--r-- | llvm/lib/VMCore/Dominators.cpp | 4 | ||||
-rw-r--r-- | llvm/lib/VMCore/PrintModulePass.cpp | 4 | ||||
-rw-r--r-- | llvm/lib/VMCore/Verifier.cpp | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/llvm/lib/VMCore/Dominators.cpp b/llvm/lib/VMCore/Dominators.cpp index f3dad824461..dc22dd45049 100644 --- a/llvm/lib/VMCore/Dominators.cpp +++ b/llvm/lib/VMCore/Dominators.cpp @@ -53,7 +53,7 @@ TEMPLATE_INSTANTIATION(class llvm::DominatorTreeBase<BasicBlock>); char DominatorTree::ID = 0; INITIALIZE_PASS(DominatorTree, "domtree", - "Dominator Tree Construction", true, true); + "Dominator Tree Construction", true, true) bool DominatorTree::runOnFunction(Function &F) { DT->recalculate(F); @@ -107,7 +107,7 @@ bool DominatorTree::dominates(const Instruction *A, const Instruction *B) const{ char DominanceFrontier::ID = 0; INITIALIZE_PASS(DominanceFrontier, "domfrontier", - "Dominance Frontier Construction", true, true); + "Dominance Frontier Construction", true, true) void DominanceFrontier::verifyAnalysis() const { if (!VerifyDomInfo) return; diff --git a/llvm/lib/VMCore/PrintModulePass.cpp b/llvm/lib/VMCore/PrintModulePass.cpp index 2ee49d23596..1f1fbc91bc3 100644 --- a/llvm/lib/VMCore/PrintModulePass.cpp +++ b/llvm/lib/VMCore/PrintModulePass.cpp @@ -78,10 +78,10 @@ namespace { char PrintModulePass::ID = 0; INITIALIZE_PASS(PrintModulePass, "print-module", - "Print module to stderr", false, false); + "Print module to stderr", false, false) char PrintFunctionPass::ID = 0; INITIALIZE_PASS(PrintFunctionPass, "print-function", - "Print function to stderr", false, false); + "Print function to stderr", false, false) /// createPrintModulePass - Create and return a pass that writes the /// module to the specified raw_ostream. diff --git a/llvm/lib/VMCore/Verifier.cpp b/llvm/lib/VMCore/Verifier.cpp index 384acb748b1..5d369fa0360 100644 --- a/llvm/lib/VMCore/Verifier.cpp +++ b/llvm/lib/VMCore/Verifier.cpp @@ -103,7 +103,7 @@ namespace { // Anonymous namespace for class char PreVerifier::ID = 0; INITIALIZE_PASS(PreVerifier, "preverify", "Preliminary module verification", - false, false); + false, false) char &PreVerifyID = PreVerifier::ID; namespace { @@ -393,7 +393,7 @@ namespace { } // End anonymous namespace char Verifier::ID = 0; -INITIALIZE_PASS(Verifier, "verify", "Module Verifier", false, false); +INITIALIZE_PASS(Verifier, "verify", "Module Verifier", false, false) // Assert - We know that cond should be true, if not print an error message. #define Assert(C, M) \ |