Removed trailing whitespace.

llvm-svn: 181760
This commit is contained in:
Michael Gottesman 2013-05-14 06:40:10 +00:00
parent 821e86f021
commit 0c8b562851
1 changed files with 4 additions and 4 deletions

View File

@ -269,19 +269,19 @@ static inline bool AreAnyUnderlyingObjectsAnAlloca(const Value *V) {
do {
const Value *P = Worklist.pop_back_val();
P = GetUnderlyingObjCPtr(P);
if (isa<AllocaInst>(P))
return true;
if (!Visited.insert(P))
continue;
if (const SelectInst *SI = dyn_cast<const SelectInst>(P)) {
Worklist.push_back(SI->getTrueValue());
Worklist.push_back(SI->getFalseValue());
continue;
}
if (const PHINode *PN = dyn_cast<const PHINode>(P)) {
for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
Worklist.push_back(PN->getIncomingValue(i));