Put all LLVM code into the llvm namespace, as per bug 109.
[oota-llvm.git] / tools / llvm-link / llvm-link.cpp
index b3ff99493b67dfa1307dcaaaf0233dafd962e969..3b492145163e2b89823225b2c5e5d7551d14d991 100644 (file)
@@ -6,7 +6,6 @@
 // the University of Illinois Open Source License. See LICENSE.TXT for details.
 // 
 //===----------------------------------------------------------------------===//
-// 
 //
 // This utility may be invoked in the following manner:
 //  llvm-link a.bc b.bc c.bc -o x.bc
@@ -25,6 +24,8 @@
 #include <sys/types.h>     // For FileExists
 #include <sys/stat.h>
 
+using namespace llvm;
+
 static cl::list<std::string>
 InputFilenames(cl::Positional, cl::OneOrMore,
                cl::desc("<input bytecode files>"));