aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2001-10-30 20:28:46 +0000
committerChris Lattner <sabre@nondot.org>2001-10-30 20:28:46 +0000
commit2b2e5b360e9509c97e312224c94077609e12d157 (patch)
tree9a3ff7bfe2d243a7b4dd86be48d0a336a488c61c
parent5deea3c5c5d71acf140b0df9488126e3c67e4a0a (diff)
Initialize map for purify
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1049 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--tools/lli/lli.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/lli/lli.cpp b/tools/lli/lli.cpp
index 7f4ef1d7e7..ba5a3a5dc7 100644
--- a/tools/lli/lli.cpp
+++ b/tools/lli/lli.cpp
@@ -28,6 +28,7 @@ Interpreter::Interpreter() : ExitCode(0), Profile(ProfileMode),
// Initialize the "backend"
initializeExecutionEngine();
+ initializeExternalMethods();
}
//===----------------------------------------------------------------------===//