1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 19:52:54 +01:00

Fix coding style issues.

llvm-svn: 123065
This commit is contained in:
Cameron Zwarich 2011-01-08 17:07:11 +00:00
parent a40df277f1
commit 9a35e69c7d

View File

@ -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.