updates for recent changes
[oota-llvm.git] / lib / Analysis / IPA / FindUsedTypes.cpp
index 83b994b53e9964fb6583b9ea6839b8aff092c6e2..09e14a87d40a5405b71b05a1ab4f6904fcb53b6c 100644 (file)
@@ -17,7 +17,6 @@
 #include "llvm/Constants.h"
 #include "llvm/DerivedTypes.h"
 #include "llvm/Module.h"
-#include "llvm/SymbolTable.h"
 #include "llvm/Assembly/CachedWriter.h"
 #include "llvm/Support/InstIterator.h"
 using namespace llvm;
@@ -50,8 +49,8 @@ void FindUsedTypes::IncorporateValue(const Value *V) {
   if (const Constant *C = dyn_cast<Constant>(V)) {
     if (!isa<GlobalValue>(C))
       for (User::const_op_iterator OI = C->op_begin(), OE = C->op_end();
-          OI != OE; ++OI)
-       IncorporateValue(*OI);
+           OI != OE; ++OI)
+        IncorporateValue(*OI);
   }
 }