diff options
author | Chris Lattner <sabre@nondot.org> | 2006-05-08 22:00:52 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-05-08 22:00:52 +0000 |
commit | e7fd553b3be8b95dc0946cd3267bc2db859cd3d8 (patch) | |
tree | cb6ad2b1cf903572a78fffdfb305dc01a3f39dfb /lib/ExecutionEngine/JIT/JIT.cpp | |
parent | 683d1bb712d8f8fc2d727a160da029c9cf40a423 (diff) |
Move some methods out of line so that MutexGuard.h isn't needed in a public header.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28179 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine/JIT/JIT.cpp')
-rw-r--r-- | lib/ExecutionEngine/JIT/JIT.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/ExecutionEngine/JIT/JIT.cpp b/lib/ExecutionEngine/JIT/JIT.cpp index 7262739e92..022bd658c2 100644 --- a/lib/ExecutionEngine/JIT/JIT.cpp +++ b/lib/ExecutionEngine/JIT/JIT.cpp @@ -22,6 +22,7 @@ #include "llvm/CodeGen/MachineCodeEmitter.h" #include "llvm/CodeGen/MachineFunction.h" #include "llvm/ExecutionEngine/GenericValue.h" +#include "llvm/Support/MutexGuard.h" #include "llvm/System/DynamicLibrary.h" #include "llvm/Target/TargetMachine.h" #include "llvm/Target/TargetJITInfo.h" @@ -349,8 +350,3 @@ void *JIT::recompileAndRelinkFunction(Function *F) { return Addr; } -/// freeMachineCodeForFunction - release machine code memory for given Function -/// -void JIT::freeMachineCodeForFunction(Function *F) { - // currently a no-op -} |