fit in 80 cols
authorChris Lattner <sabre@nondot.org>
Fri, 20 Apr 2007 22:40:40 +0000 (22:40 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 20 Apr 2007 22:40:40 +0000 (22:40 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36288 91177308-0d34-0410-b5e6-96231b3b80d8

lib/ExecutionEngine/JIT/JIT.h

index 74a036ff2f0dfc2ee2951eb3eb56aec24f0406e6..5a3d6614dbc07d0c4d015149341ec668e83d2876 100644 (file)
@@ -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;
   }
 };