summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-07-11 01:08:19 +0000
committerChris Lattner <sabre@nondot.org>2004-07-11 01:08:19 +0000
commit4a1de8b25044a6bd8ca2d113d1a6eb907d222e4c (patch)
treef61795a5ede2c49ed4edc1caf76c0615a84573c7 /tools
parenta3eb7b3983492a8f5b365d100b69771f06a72e73 (diff)
downloadllvm-4a1de8b25044a6bd8ca2d113d1a6eb907d222e4c.tar.gz
llvm-4a1de8b25044a6bd8ca2d113d1a6eb907d222e4c.tar.bz2
llvm-4a1de8b25044a6bd8ca2d113d1a6eb907d222e4c.tar.xz
Add -load option
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14740 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r--tools/analyze/analyze.cpp1
-rw-r--r--tools/bugpoint/bugpoint.cpp1
-rw-r--r--tools/llvm-db/llvm-db.cpp1
-rw-r--r--tools/opt/opt.cpp1
4 files changed, 4 insertions, 0 deletions
diff --git a/tools/analyze/analyze.cpp b/tools/analyze/analyze.cpp
index 04dbb85a59..f24f75d7c0 100644
--- a/tools/analyze/analyze.cpp
+++ b/tools/analyze/analyze.cpp
@@ -24,6 +24,7 @@
#include "llvm/Target/TargetData.h"
#include "llvm/Support/PassNameParser.h"
#include "llvm/System/Signals.h"
+#include "Support/PluginLoader.h"
#include "Support/Timer.h"
#include <algorithm>
diff --git a/tools/bugpoint/bugpoint.cpp b/tools/bugpoint/bugpoint.cpp
index 6dc08556ce..9bf3a004be 100644
--- a/tools/bugpoint/bugpoint.cpp
+++ b/tools/bugpoint/bugpoint.cpp
@@ -18,6 +18,7 @@
#include "llvm/Support/ToolRunner.h"
#include "Support/CommandLine.h"
#include "llvm/System/Signals.h"
+#include "Support/PluginLoader.h"
#include "Config/unistd.h"
#include <sys/resource.h>
using namespace llvm;
diff --git a/tools/llvm-db/llvm-db.cpp b/tools/llvm-db/llvm-db.cpp
index 53221e8a2b..cceac920d5 100644
--- a/tools/llvm-db/llvm-db.cpp
+++ b/tools/llvm-db/llvm-db.cpp
@@ -14,6 +14,7 @@
#include "CLIDebugger.h"
#include "Support/CommandLine.h"
+#include "Support/PluginLoader.h"
#include "llvm/System/Signals.h"
#include <iostream>
diff --git a/tools/opt/opt.cpp b/tools/opt/opt.cpp
index f907adfc01..612b65fd56 100644
--- a/tools/opt/opt.cpp
+++ b/tools/opt/opt.cpp
@@ -22,6 +22,7 @@
#include "llvm/Target/TargetMachineImpls.h"
#include "llvm/Support/PassNameParser.h"
#include "llvm/System/Signals.h"
+#include "Support/PluginLoader.h"
#include "Support/SystemUtils.h"
#include <fstream>
#include <memory>