Removed trailing whitespace.
authorMichael Gottesman <mgottesman@apple.com>
Tue, 14 May 2013 06:40:10 +0000 (06:40 +0000)
committerMichael Gottesman <mgottesman@apple.com>
Tue, 14 May 2013 06:40:10 +0000 (06:40 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@181760 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/ObjCARC/ObjCARCOpts.cpp

index 5db4797aebb28f63661084c7887db578ace1735c..878da7d74c91eedb41faafaf0f236434598d9f2b 100644 (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));