diff options
| author | Owen Anderson <resistor@mac.com> | 2010-10-07 22:25:06 +0000 | 
|---|---|---|
| committer | Owen Anderson <resistor@mac.com> | 2010-10-07 22:25:06 +0000 | 
| commit | df7a4f2515ce59b487c24e8bb8ea98c10b3edabf (patch) | |
| tree | 001747798d8e0272b6b5fabbde9790e8db3741af /llvm/lib/VMCore | |
| parent | 28ae29420a66397cebbfdb0f226c7bba190beca3 (diff) | |
| download | bcm5719-llvm-df7a4f2515ce59b487c24e8bb8ea98c10b3edabf.tar.gz bcm5719-llvm-df7a4f2515ce59b487c24e8bb8ea98c10b3edabf.zip | |
Now with fewer extraneous semicolons!
llvm-svn: 115996
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) \ | 

