summaryrefslogtreecommitdiff
path: root/include/llvm/ExecutionEngine
diff options
context:
space:
mode:
authorJeff Cohen <jeffc@jolt-lang.org>2006-03-24 02:58:54 +0000
committerJeff Cohen <jeffc@jolt-lang.org>2006-03-24 02:58:54 +0000
commitf2dc4fd5de8c893ede4230e05ed2818c57a343ea (patch)
treeab91f60db0497a6ac8a15f3fe313651bf0ea1d7f /include/llvm/ExecutionEngine
parent2c0dbd01d240f80e5517773d8e2f77924c69a6ec (diff)
downloadllvm-f2dc4fd5de8c893ede4230e05ed2818c57a343ea.tar.gz
llvm-f2dc4fd5de8c893ede4230e05ed2818c57a343ea.tar.bz2
llvm-f2dc4fd5de8c893ede4230e05ed2818c57a343ea.tar.xz
Minor corrections.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27041 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/ExecutionEngine')
-rw-r--r--include/llvm/ExecutionEngine/Interpreter.h1
-rw-r--r--include/llvm/ExecutionEngine/JIT.h3
2 files changed, 3 insertions, 1 deletions
diff --git a/include/llvm/ExecutionEngine/Interpreter.h b/include/llvm/ExecutionEngine/Interpreter.h
index bb11d02596..a491a68c2f 100644
--- a/include/llvm/ExecutionEngine/Interpreter.h
+++ b/include/llvm/ExecutionEngine/Interpreter.h
@@ -16,6 +16,7 @@
#define EXECUTION_ENGINE_INTERPRETER_H
#include "llvm/ExecutionEngine/ExecutionEngine.h"
+#include <cstdlib>
namespace llvm {
extern void LinkInInterpreter();
diff --git a/include/llvm/ExecutionEngine/JIT.h b/include/llvm/ExecutionEngine/JIT.h
index 8f17be1ece..3563b6a253 100644
--- a/include/llvm/ExecutionEngine/JIT.h
+++ b/include/llvm/ExecutionEngine/JIT.h
@@ -7,7 +7,7 @@
//
//===----------------------------------------------------------------------===//
//
-// This file forces the interpreter to link in on certain operating systems.
+// This file forces the JIT to link in on certain operating systems.
// (Windows).
//
//===----------------------------------------------------------------------===//
@@ -16,6 +16,7 @@
#define EXECUTION_ENGINE_JIT_H
#include "llvm/ExecutionEngine/ExecutionEngine.h"
+#include <cstdlib>
namespace llvm {
extern void LinkInJIT();