diff options
author | Chris Lattner <sabre@nondot.org> | 2007-04-20 22:40:40 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-04-20 22:40:40 +0000 |
commit | f7e968a2a2bcaa0d253e668c0aee7c859aa8b36b (patch) | |
tree | e63b19772d0ccad8297270f6c2d4a458708c4218 /lib/ExecutionEngine | |
parent | 09b362cee6fdbec771e5d1da4b6927456849ef8b (diff) | |
download | external_llvm-f7e968a2a2bcaa0d253e668c0aee7c859aa8b36b.zip external_llvm-f7e968a2a2bcaa0d253e668c0aee7c859aa8b36b.tar.gz external_llvm-f7e968a2a2bcaa0d253e668c0aee7c859aa8b36b.tar.bz2 |
fit in 80 cols
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36288 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine')
-rw-r--r-- | lib/ExecutionEngine/JIT/JIT.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ExecutionEngine/JIT/JIT.h b/lib/ExecutionEngine/JIT/JIT.h index 74a036f..5a3d661 100644 --- a/lib/ExecutionEngine/JIT/JIT.h +++ b/lib/ExecutionEngine/JIT/JIT.h @@ -39,11 +39,11 @@ private: public: JITState(ModuleProvider *MP) : PM(MP) {} - FunctionPassManager& getPM(const MutexGuard& locked) { + FunctionPassManager &getPM(const MutexGuard &L) { return PM; } - std::vector<const GlobalVariable*>& getPendingGlobals(const MutexGuard& locked) { + std::vector<const GlobalVariable*> &getPendingGlobals(const MutexGuard &L) { return PendingGlobals; } }; |