From: Chris Lattner Date: Tue, 7 May 2002 22:12:52 +0000 (+0000) Subject: Spell aggressive right X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=1ea5c56795913c7c852fb76d59074011f5f26939;p=oota-llvm.git Spell aggressive right git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2549 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Transforms/Scalar.h b/include/llvm/Transforms/Scalar.h index 91cc81a1b2e..144db236709 100644 --- a/include/llvm/Transforms/Scalar.h +++ b/include/llvm/Transforms/Scalar.h @@ -45,11 +45,11 @@ Pass *createDeadCodeEliminationPass(); //===----------------------------------------------------------------------===// // -// AgressiveDCE - This pass uses the SSA based Agressive DCE algorithm. This +// AggressiveDCE - This pass uses the SSA based Aggressive DCE algorithm. This // algorithm assumes instructions are dead until proven otherwise, which makes // it more successful are removing non-obviously dead instructions. // -Pass *createAgressiveDCEPass(); +Pass *createAggressiveDCEPass(); //===----------------------------------------------------------------------===//