[llvm-commits] CVS: llvm/tools/llvm-link/llvm-link.cpp
Brian Gaeke
gaeke at cs.uiuc.edu
Tue Nov 11 16:42:46 PST 2003
Changes in directory llvm/tools/llvm-link:
llvm-link.cpp updated: 1.32 -> 1.33
---
Log message:
Put all LLVM code into the llvm namespace, as per bug 109.
---
Diffs of the changes: (+2 -0)
Index: llvm/tools/llvm-link/llvm-link.cpp
diff -u llvm/tools/llvm-link/llvm-link.cpp:1.32 llvm/tools/llvm-link/llvm-link.cpp:1.33
--- llvm/tools/llvm-link/llvm-link.cpp:1.32 Mon Oct 20 15:40:30 2003
+++ llvm/tools/llvm-link/llvm-link.cpp Tue Nov 11 16:41:34 2003
@@ -24,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>"));
More information about the llvm-commits
mailing list