diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2004-06-23 17:33:09 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2004-06-23 17:33:09 +0000 |
commit | 008248f2c098f7680b5b393d6e3006cd7d974b77 (patch) | |
tree | 8a93e80a08a996d254eca484efdb8b7addedc2fd | |
parent | bd8aeb61ecd37975da8b6b6b1fe3aefbdd87ef56 (diff) |
Linker.h moved to include/llvm/Support
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14351 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Linker/LinkArchives.cpp | 2 | ||||
-rw-r--r-- | tools/bugpoint/BugDriver.cpp | 2 | ||||
-rw-r--r-- | tools/bugpoint/Miscompilation.cpp | 2 | ||||
-rw-r--r-- | tools/gccld/GenerateCode.cpp | 2 | ||||
-rw-r--r-- | tools/gccld/Linker.cpp | 2 | ||||
-rw-r--r-- | tools/gccld/gccld.cpp | 2 | ||||
-rw-r--r-- | tools/llvm-link/llvm-link.cpp | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/lib/Linker/LinkArchives.cpp b/lib/Linker/LinkArchives.cpp index d7a74fb5af..fcaa7af3d5 100644 --- a/lib/Linker/LinkArchives.cpp +++ b/lib/Linker/LinkArchives.cpp @@ -20,7 +20,7 @@ #include "llvm/Target/TargetData.h" #include "llvm/Transforms/IPO.h" #include "llvm/Transforms/Scalar.h" -#include "llvm/Transforms/Utils/Linker.h" +#include "llvm/Support/Linker.h" #include "Config/config.h" #include "Support/CommandLine.h" #include "Support/FileUtilities.h" diff --git a/tools/bugpoint/BugDriver.cpp b/tools/bugpoint/BugDriver.cpp index 8803a78708..ed947c8520 100644 --- a/tools/bugpoint/BugDriver.cpp +++ b/tools/bugpoint/BugDriver.cpp @@ -18,7 +18,7 @@ #include "llvm/Pass.h" #include "llvm/Assembly/Parser.h" #include "llvm/Bytecode/Reader.h" -#include "llvm/Transforms/Utils/Linker.h" +#include "llvm/Support/Linker.h" #include "llvm/Support/ToolRunner.h" #include "Support/CommandLine.h" #include "Support/FileUtilities.h" diff --git a/tools/bugpoint/Miscompilation.cpp b/tools/bugpoint/Miscompilation.cpp index e920df3ecc..222e646522 100644 --- a/tools/bugpoint/Miscompilation.cpp +++ b/tools/bugpoint/Miscompilation.cpp @@ -22,7 +22,7 @@ #include "llvm/Analysis/Verifier.h" #include "llvm/Support/Mangler.h" #include "llvm/Transforms/Utils/Cloning.h" -#include "llvm/Transforms/Utils/Linker.h" +#include "llvm/Support/Linker.h" #include "Support/CommandLine.h" #include "Support/FileUtilities.h" using namespace llvm; diff --git a/tools/gccld/GenerateCode.cpp b/tools/gccld/GenerateCode.cpp index 4498d73300..d186f745e1 100644 --- a/tools/gccld/GenerateCode.cpp +++ b/tools/gccld/GenerateCode.cpp @@ -22,7 +22,7 @@ #include "llvm/Target/TargetData.h" #include "llvm/Transforms/IPO.h" #include "llvm/Transforms/Scalar.h" -#include "llvm/Transforms/Utils/Linker.h" +#include "llvm/Support/Linker.h" #include "Support/SystemUtils.h" #include "Support/CommandLine.h" using namespace llvm; diff --git a/tools/gccld/Linker.cpp b/tools/gccld/Linker.cpp index d7a74fb5af..fcaa7af3d5 100644 --- a/tools/gccld/Linker.cpp +++ b/tools/gccld/Linker.cpp @@ -20,7 +20,7 @@ #include "llvm/Target/TargetData.h" #include "llvm/Transforms/IPO.h" #include "llvm/Transforms/Scalar.h" -#include "llvm/Transforms/Utils/Linker.h" +#include "llvm/Support/Linker.h" #include "Config/config.h" #include "Support/CommandLine.h" #include "Support/FileUtilities.h" diff --git a/tools/gccld/gccld.cpp b/tools/gccld/gccld.cpp index 6f94ed51f4..cddb9bdb47 100644 --- a/tools/gccld/gccld.cpp +++ b/tools/gccld/gccld.cpp @@ -28,7 +28,7 @@ #include "llvm/Target/TargetData.h" #include "llvm/Transforms/IPO.h" #include "llvm/Transforms/Scalar.h" -#include "llvm/Transforms/Utils/Linker.h" +#include "llvm/Support/Linker.h" #include "Support/CommandLine.h" #include "Support/FileUtilities.h" #include "llvm/System/Signals.h" diff --git a/tools/llvm-link/llvm-link.cpp b/tools/llvm-link/llvm-link.cpp index f80f98893e..8b936bfe1b 100644 --- a/tools/llvm-link/llvm-link.cpp +++ b/tools/llvm-link/llvm-link.cpp @@ -16,7 +16,7 @@ #include "llvm/Analysis/Verifier.h" #include "llvm/Bytecode/Reader.h" #include "llvm/Bytecode/Writer.h" -#include "llvm/Transforms/Utils/Linker.h" +#include "llvm/Support/Linker.h" #include "Support/CommandLine.h" #include "Support/FileUtilities.h" #include "llvm/System/Signals.h" |