diff options
author | Cameron Zwarich <zwarich@apple.com> | 2011-01-08 17:07:11 +0000 |
---|---|---|
committer | Cameron Zwarich <zwarich@apple.com> | 2011-01-08 17:07:11 +0000 |
commit | b4ab257bccf235174385a33c9810395207580ff8 (patch) | |
tree | e84a0b2d6754e87fecd3b7c4b1ed6d53d99401a0 /llvm/lib/Transforms/Scalar/LoopInstSimplify.cpp | |
parent | 84986b298ae1110529871a19e1b4c9ab81281e10 (diff) | |
download | bcm5719-llvm-b4ab257bccf235174385a33c9810395207580ff8.tar.gz bcm5719-llvm-b4ab257bccf235174385a33c9810395207580ff8.zip |
Fix coding style issues.
llvm-svn: 123065
Diffstat (limited to 'llvm/lib/Transforms/Scalar/LoopInstSimplify.cpp')
-rw-r--r-- | llvm/lib/Transforms/Scalar/LoopInstSimplify.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/Scalar/LoopInstSimplify.cpp b/llvm/lib/Transforms/Scalar/LoopInstSimplify.cpp index 5c563b2f788..ad73f7b8e79 100644 --- a/llvm/lib/Transforms/Scalar/LoopInstSimplify.cpp +++ b/llvm/lib/Transforms/Scalar/LoopInstSimplify.cpp @@ -54,7 +54,7 @@ INITIALIZE_PASS_DEPENDENCY(LCSSA) INITIALIZE_PASS_END(LoopInstSimplify, "loop-instsimplify", "Simplify instructions in loops", false, false) -Pass* llvm::createLoopInstSimplifyPass() { +Pass *llvm::createLoopInstSimplifyPass() { return new LoopInstSimplify(); } @@ -87,7 +87,7 @@ bool LoopInstSimplify::runOnLoop(Loop *L, LPPassManager &LPM) { while (!VisitStack.empty()) { WorklistItem Item = VisitStack.pop_back_val(); - BasicBlock* BB = Item.getPointer(); + BasicBlock *BB = Item.getPointer(); bool IsSubloopHeader = Item.getInt(); // Simplify instructions in the current basic block. |