Fix anand's last checkin


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2804 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Analysis/DataStructure/NodeImpl.cpp b/lib/Analysis/DataStructure/NodeImpl.cpp
index b47b265..1b3fb76 100644
--- a/lib/Analysis/DataStructure/NodeImpl.cpp
+++ b/lib/Analysis/DataStructure/NodeImpl.cpp
@@ -13,7 +13,6 @@
 #include "Support/STLExtras.h"
 #include <algorithm>
 #include <sstream>
-#include <iostream>
 using std::map;
 using std::string;
 
@@ -128,7 +127,7 @@
 
 void DSNode::removeReferrer(PointerValSet *PVS) {
   std::vector<PointerValSet*>::iterator I = std::find(Referrers.begin(),
-						      Referrers.end(), PVS);
+                                                      Referrers.end(), PVS);
   assert(I != Referrers.end() && "PVS not pointing to node!");
   Referrers.erase(I);
 }