Detabify.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@208019 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Nick Lewycky 2014-05-06 00:46:20 +00:00
parent 05da4dd998
commit 096d8411b3

View File

@ -204,7 +204,7 @@ struct AllocaDerivedValueTracker {
continue;
}
case Instruction::Store: {
if (U->getOperandNo() == 0)
if (U->getOperandNo() == 0)
EscapePoints.insert(I);
continue; // Stores have no users to analyze.
}
@ -216,7 +216,7 @@ struct AllocaDerivedValueTracker {
break;
default:
EscapePoints.insert(I);
break;
break;
}
AddUsesToWorklist(I);