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 | 1e999c41642da770172d99e5d8f80cb5330381a6 (patch) | |
tree | 4d1a5a30c7e1bb678c5f34e53d7a212fe7f20580 /llvm/lib/ExecutionEngine | |
parent | 5959f42498e3096fe0b6da744c1a7f34ecd9ab53 (diff) | |
download | bcm5719-llvm-1e999c41642da770172d99e5d8f80cb5330381a6.tar.gz bcm5719-llvm-1e999c41642da770172d99e5d8f80cb5330381a6.zip |
fit in 80 cols
llvm-svn: 36288
Diffstat (limited to 'llvm/lib/ExecutionEngine')
-rw-r--r-- | llvm/lib/ExecutionEngine/JIT/JIT.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/ExecutionEngine/JIT/JIT.h b/llvm/lib/ExecutionEngine/JIT/JIT.h index 74a036ff2f0..5a3d6614dbc 100644 --- a/llvm/lib/ExecutionEngine/JIT/JIT.h +++ b/llvm/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; } }; |