commit | 579f07135afdc3975eb24a210433222b888dc9f7 | [log] [tgz] |
---|---|---|
author | Anton Korobeynikov <asl@math.spbu.ru> | Wed Feb 20 11:08:44 2008 +0000 |
committer | Anton Korobeynikov <asl@math.spbu.ru> | Wed Feb 20 11:08:44 2008 +0000 |
tree | 460fdcf6fe4d577708dcd3004a06536999972528 | |
parent | b912351ec908c049b5f40eab0052602c8dff31cd [diff] [blame] |
Unbreak build with gcc 4.3: provide missed includes and silence most annoying warnings. llvm-svn: 47367
diff --git a/llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp b/llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp index 0bf42b8..d5b2696 100644 --- a/llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp +++ b/llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp
@@ -17,6 +17,8 @@ #include <map> #include <vector> #include <cassert> +#include <cstdlib> +#include <cstring> using namespace llvm;