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:
parent
a40df277f1
commit
9a35e69c7d
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user