From 2b2e5b360e9509c97e312224c94077609e12d157 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 30 Oct 2001 20:28:46 +0000 Subject: [PATCH] Initialize map for purify git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1049 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/lli/lli.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/lli/lli.cpp b/tools/lli/lli.cpp index 7f4ef1d7e75..ba5a3a5dc72 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(); } //===----------------------------------------------------------------------===//