mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
style and spelling
llvm-svn: 48562
This commit is contained in:
parent
3af681c5fb
commit
9d2ead09ba
@ -32,7 +32,7 @@ using namespace llvm;
|
||||
static cl::list<const PassInfo*, bool, PassNameParser>
|
||||
OptimizationList(cl::desc("Optimizations available:"));
|
||||
|
||||
//Don't veryify at the end
|
||||
//Don't verify at the end
|
||||
static cl::opt<bool> DontVerify("disable-verify", cl::ReallyHidden);
|
||||
|
||||
// Optimization Enumeration
|
||||
@ -209,7 +209,7 @@ void Optimize(Module* M) {
|
||||
}
|
||||
|
||||
// Make sure everything is still good.
|
||||
if(!DontVerify)
|
||||
if (!DontVerify)
|
||||
Passes.add(createVerifierPass());
|
||||
|
||||
// Run our queue of passes all at once now, efficiently.
|
||||
|
Loading…
Reference in New Issue
Block a user