diff options
author | Chris Lattner <sabre@nondot.org> | 2001-11-27 00:03:19 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2001-11-27 00:03:19 +0000 |
commit | 5de2204fe84a89604a31253a299ab265dee76934 (patch) | |
tree | 142e5dd065732bf4cc8775f69ce0979230836e51 /llvm/tools/link/link.cpp | |
parent | f679703feb9c4702a55f41caec15d5adf997cac9 (diff) | |
download | bcm5719-llvm-5de2204fe84a89604a31253a299ab265dee76934.tar.gz bcm5719-llvm-5de2204fe84a89604a31253a299ab265dee76934.zip |
Create a new #include "Support/..." directory structure to move things
from "llvm/Support/..." that are not llvm dependant.
Move files and fix #includes
llvm-svn: 1400
Diffstat (limited to 'llvm/tools/link/link.cpp')
-rw-r--r-- | llvm/tools/link/link.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/tools/link/link.cpp b/llvm/tools/link/link.cpp index 80a39b2d9c1..9bf766fcaad 100644 --- a/llvm/tools/link/link.cpp +++ b/llvm/tools/link/link.cpp @@ -13,10 +13,10 @@ #include "llvm/Bytecode/Reader.h" #include "llvm/Bytecode/Writer.h" #include "llvm/Assembly/Writer.h" -#include "llvm/Support/CommandLine.h" #include "llvm/Module.h" #include "llvm/Method.h" -#include <fstream.h> +#include "Support/CommandLine.h" +#include <fstream> #include <memory> |