summaryrefslogtreecommitdiff
path: root/lib/ExecutionEngine/JIT/JIT.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-04-20 22:40:40 +0000
committerChris Lattner <sabre@nondot.org>2007-04-20 22:40:40 +0000
commitf7e968a2a2bcaa0d253e668c0aee7c859aa8b36b (patch)
treee63b19772d0ccad8297270f6c2d4a458708c4218 /lib/ExecutionEngine/JIT/JIT.h
parent09b362cee6fdbec771e5d1da4b6927456849ef8b (diff)
downloadllvm-f7e968a2a2bcaa0d253e668c0aee7c859aa8b36b.tar.gz
llvm-f7e968a2a2bcaa0d253e668c0aee7c859aa8b36b.tar.bz2
llvm-f7e968a2a2bcaa0d253e668c0aee7c859aa8b36b.tar.xz
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/JIT/JIT.h')
-rw-r--r--lib/ExecutionEngine/JIT/JIT.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ExecutionEngine/JIT/JIT.h b/lib/ExecutionEngine/JIT/JIT.h
index 74a036ff2f..5a3d6614db 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;
}
};