Reformat partially.
[oota-llvm.git] / include / llvm / Analysis / CallGraphSCCPass.h
index 7ffb30ac0a01bcd8e77e29ab893a620ffeeedd62..9c7f7bd34cceb3614c3ca3b865364a195c167ce7 100644 (file)
@@ -87,7 +87,7 @@ class CallGraphSCC {
 public:
   CallGraphSCC(void *context) : Context(context) {}
 
-  void initialize(CallGraphNode*const*I, CallGraphNode*const*E) {
+  void initialize(CallGraphNode *const *I, CallGraphNode *const *E) {
     Nodes.assign(I, E);
   }
 
@@ -98,7 +98,7 @@ public:
   /// Old node has been deleted, and New is to be used in its place.
   void ReplaceNode(CallGraphNode *Old, CallGraphNode *New);
 
-  typedef std::vector<CallGraphNode*>::const_iterator iterator;
+  typedef std::vector<CallGraphNode *>::const_iterator iterator;
   iterator begin() const { return Nodes.begin(); }
   iterator end() const { return Nodes.end(); }
 };