mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
Fix indentation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37621 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
60e174495a
commit
a8daa7176b
@ -338,12 +338,12 @@ void GVNPRE::clean(std::set<Value*, ExprLT>& set) {
|
||||
|
||||
bool rhsValid = !isa<Instruction>(BO->getOperand(1));
|
||||
if (!rhsValid)
|
||||
for (std::set<Value*, ExprLT>::iterator I = set.begin(), E = set.end();
|
||||
I != E; ++I)
|
||||
if (VN[*I] == VN[BO->getOperand(1)]) {
|
||||
rhsValid = true;
|
||||
break;
|
||||
}
|
||||
for (std::set<Value*, ExprLT>::iterator I = set.begin(), E = set.end();
|
||||
I != E; ++I)
|
||||
if (VN[*I] == VN[BO->getOperand(1)]) {
|
||||
rhsValid = true;
|
||||
break;
|
||||
}
|
||||
|
||||
// Check for dependency on invoke insts
|
||||
// NOTE: This check is expensive, so don't do it if we
|
||||
|
Loading…
Reference in New Issue
Block a user