Spell aggressive right

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2549 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2002-05-07 22:12:52 +00:00
parent a7980c0a08
commit 1ea5c56795

View File

@ -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();
//===----------------------------------------------------------------------===//