Added LLVM project notice to the top of every C++ source file.
[oota-llvm.git] / lib / Transforms / Instrumentation / EmitFunctions.cpp
index a676edcc01b053f0fe29c56f2c659b4985073214..9c395a9c1f65401845834332948d7c1c30c19569 100644 (file)
@@ -1,4 +1,11 @@
-//===-- EmitFunctions.cpp - interface to insert instrumentation --*- C++ -*--=//
+//===-- EmitFunctions.cpp - interface to insert instrumentation -----------===//
+// 
+//                     The LLVM Compiler Infrastructure
+//
+// This file was developed by the LLVM research group and is distributed under
+// the University of Illinois Open Source License. See LICENSE.TXT for details.
+// 
+//===----------------------------------------------------------------------===//
 //
 // This inserts a global constant table with function pointers all along
 //
@@ -27,8 +34,7 @@ namespace {
 char doDFS(BasicBlock * node,std::map<BasicBlock *, Color > &color){
   color[node] = GREY;
 
-  for(BasicBlock::succ_iterator vl = succ_begin(node), 
-       ve = succ_end(node); vl != ve; ++vl){
+  for(succ_iterator vl = succ_begin(node), ve = succ_end(node); vl != ve; ++vl){
    
     BasicBlock *BB = *vl;