Rename 'loopsimplify' to 'loop-simplify'.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@125317 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Cameron Zwarich
2011-02-10 23:38:10 +00:00
parent 7dd74ed8d8
commit 4a60b932a2
21 changed files with 24 additions and 24 deletions

View File

@ -37,7 +37,7 @@
//
//===----------------------------------------------------------------------===//
#define DEBUG_TYPE "loopsimplify"
#define DEBUG_TYPE "loop-simplify"
#include "llvm/Transforms/Scalar.h"
#include "llvm/Constants.h"
#include "llvm/Instructions.h"
@ -108,11 +108,11 @@ namespace {
}
char LoopSimplify::ID = 0;
INITIALIZE_PASS_BEGIN(LoopSimplify, "loopsimplify",
INITIALIZE_PASS_BEGIN(LoopSimplify, "loop-simplify",
"Canonicalize natural loops", true, false)
INITIALIZE_PASS_DEPENDENCY(DominatorTree)
INITIALIZE_PASS_DEPENDENCY(LoopInfo)
INITIALIZE_PASS_END(LoopSimplify, "loopsimplify",
INITIALIZE_PASS_END(LoopSimplify, "loop-simplify",
"Canonicalize natural loops", true, false)
// Publically exposed interface to pass...