fix bug in previous checkin
[oota-llvm.git] / lib / Analysis / DataStructure / Parallelize.cpp
index 09b7dc21cdff43783bf4fe1930343c76bd4d93a2..e22c86cb7fe47bedfe6d22b6ff291529d8fed247 100644 (file)
@@ -1,4 +1,11 @@
 //===- Parallelize.cpp - Auto parallelization using DS Graphs -------------===//
+// 
+//                     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 file implements a pass that automatically parallelizes a program,
 // using the Cilk multi-threaded runtime system to execute parallel code.
@@ -45,6 +52,7 @@
 #include "Support/hash_map"
 #include <functional>
 #include <algorithm>
+using namespace llvm;
 
 //---------------------------------------------------------------------------- 
 // Global constants used in marking Cilk functions and function calls.
@@ -528,3 +536,4 @@ bool Parallelize::run(Module& M)
 
   return true;
 }
+