From ec9f05056040b1134e414477e3e11a1d6c30ab73 Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Sun, 20 Aug 2006 20:48:44 +0000 Subject: Rename the -verify option to be -verify-each so that it doesn't conflict with the -verify pass option. It is also more accurate in that this option causes a verify option to be run after every pass. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29782 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/llvm-ld/Optimize.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tools/llvm-ld') diff --git a/tools/llvm-ld/Optimize.cpp b/tools/llvm-ld/Optimize.cpp index 1e391d63b8..e6387feaba 100644 --- a/tools/llvm-ld/Optimize.cpp +++ b/tools/llvm-ld/Optimize.cpp @@ -70,8 +70,8 @@ DisableOptimizations("disable-opt", static cl::opt DisableInternalize("disable-internalize", cl::desc("Do not mark all symbols as internal")); -static cl::opt Verify("verify", - cl::desc("Verify intermediate results of all passes")); +static cl::opt VerifyEach("verify-each", + cl::desc("Verify intermediate results of all passes")); static cl::opt Strip("s", cl::desc("Strip symbol info from executable")); @@ -87,7 +87,7 @@ static inline void addPass(PassManager &PM, Pass *P) { PM.add(P); // If we are verifying all of the intermediate steps, add the verifier... - if (Verify) + if (VerifyEach) PM.add(createVerifierPass()); } @@ -102,7 +102,7 @@ void Optimize(Module* M) { PassManager Passes; // If we're verifying, start off with a verification pass. - if (Verify) + if (VerifyEach) Passes.add(createVerifierPass()); // Add an appropriate TargetData instance for this module... -- cgit v1.2.3