Skip to content

Commit b4ab257

Browse files
author
Cameron Zwarich
committed
Fix coding style issues.
llvm-svn: 123065
1 parent 84986b2 commit b4ab257

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/lib/Transforms/Scalar/LoopInstSimplify.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ INITIALIZE_PASS_DEPENDENCY(LCSSA)
5454
INITIALIZE_PASS_END(LoopInstSimplify, "loop-instsimplify",
5555
"Simplify instructions in loops", false, false)
5656

57-
Pass* llvm::createLoopInstSimplifyPass() {
57+
Pass *llvm::createLoopInstSimplifyPass() {
5858
return new LoopInstSimplify();
5959
}
6060

@@ -87,7 +87,7 @@ bool LoopInstSimplify::runOnLoop(Loop *L, LPPassManager &LPM) {
8787

8888
while (!VisitStack.empty()) {
8989
WorklistItem Item = VisitStack.pop_back_val();
90-
BasicBlock* BB = Item.getPointer();
90+
BasicBlock *BB = Item.getPointer();
9191
bool IsSubloopHeader = Item.getInt();
9292

9393
// Simplify instructions in the current basic block.

0 commit comments

Comments
 (0)