diff options
author | Jeff Cohen <jeffc@jolt-lang.org> | 2006-03-24 02:58:54 +0000 |
---|---|---|
committer | Jeff Cohen <jeffc@jolt-lang.org> | 2006-03-24 02:58:54 +0000 |
commit | f2dc4fd5de8c893ede4230e05ed2818c57a343ea (patch) | |
tree | ab91f60db0497a6ac8a15f3fe313651bf0ea1d7f /include | |
parent | 2c0dbd01d240f80e5517773d8e2f77924c69a6ec (diff) | |
download | external_llvm-f2dc4fd5de8c893ede4230e05ed2818c57a343ea.zip external_llvm-f2dc4fd5de8c893ede4230e05ed2818c57a343ea.tar.gz external_llvm-f2dc4fd5de8c893ede4230e05ed2818c57a343ea.tar.bz2 |
Minor corrections.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27041 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/ExecutionEngine/Interpreter.h | 1 | ||||
-rw-r--r-- | include/llvm/ExecutionEngine/JIT.h | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/include/llvm/ExecutionEngine/Interpreter.h b/include/llvm/ExecutionEngine/Interpreter.h index bb11d02..a491a68 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 8f17be1..3563b6a 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(); |