Reformat partially.
[oota-llvm.git] / include / llvm / Analysis / CallGraphSCCPass.h
index 5dd10fb7323d3c7bc4d6b9e78512b2196448ad4a..9c7f7bd34cceb3614c3ca3b865364a195c167ce7 100644 (file)
@@ -83,10 +83,11 @@ public:
 class CallGraphSCC {
   void *Context; // The CGPassManager object that is vending this.
   std::vector<CallGraphNode*> Nodes;
+
 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);
   }
 
@@ -97,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(); }
 };