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 | d1370b53d90e81715ab6e5aa3018ac4d826cf4a7 (patch) | |
| tree | ecba90e1991f7eb3d05f767d028d7fb3f44458f1 | |
| parent | 2595a687da4a800a80c1ca63fd374c6c204a0ed1 (diff) | |
| download | bcm5719-llvm-d1370b53d90e81715ab6e5aa3018ac4d826cf4a7.tar.gz bcm5719-llvm-d1370b53d90e81715ab6e5aa3018ac4d826cf4a7.zip | |
Minor corrections.
llvm-svn: 27041
| -rw-r--r-- | llvm/include/llvm/ExecutionEngine/Interpreter.h | 1 | ||||
| -rw-r--r-- | llvm/include/llvm/ExecutionEngine/JIT.h | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/llvm/include/llvm/ExecutionEngine/Interpreter.h b/llvm/include/llvm/ExecutionEngine/Interpreter.h index bb11d025966..a491a68c2fb 100644 --- a/llvm/include/llvm/ExecutionEngine/Interpreter.h +++ b/llvm/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/llvm/include/llvm/ExecutionEngine/JIT.h b/llvm/include/llvm/ExecutionEngine/JIT.h index 8f17be1ece4..3563b6a2530 100644 --- a/llvm/include/llvm/ExecutionEngine/JIT.h +++ b/llvm/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(); |

