Fix whitespace style.
authorDan Gohman <gohman@apple.com>
Tue, 29 Jun 2010 18:12:34 +0000 (18:12 +0000)
committerDan Gohman <gohman@apple.com>
Tue, 29 Jun 2010 18:12:34 +0000 (18:12 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@107175 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/BasicAliasAnalysis.cpp

index e6e9e36ae77d4291439bb6def6b6e81ec074582f..7577f0ea777fb9bebd99b54586ba6d432786d91f 100644 (file)
@@ -199,10 +199,10 @@ ImmutablePass *llvm::createNoAAPass() { return new NoAA(); }
 
 #ifdef XDEBUG
 static const Function *getParent(const Value *V) {
-  if(const Instruction *inst = dyn_cast<Instruction>(V))
+  if (const Instruction *inst = dyn_cast<Instruction>(V))
     return inst->getParent()->getParent();
 
-  if(const Argument *arg = dyn_cast<Argument>(V))
+  if (const Argument *arg = dyn_cast<Argument>(V))
     return arg->getParent();
 
   return NULL;