diff options
author | Bill Wendling <isanbard@gmail.com> | 2009-06-11 20:10:02 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2009-06-11 20:10:02 +0000 |
commit | 5e0644c73e0415e85c035ad1306a86554dd26df7 (patch) | |
tree | 4135d74145447dbb5f0383cec3704dd906fd395c | |
parent | c997d45ae5d2e25643d3ccc2c4ae44dcca6cdf5b (diff) |
Remove unused parameter warnings.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73202 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/ExecutionEngine/ExecutionEngine.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/ExecutionEngine/ExecutionEngine.h b/include/llvm/ExecutionEngine/ExecutionEngine.h index 0d171f6764..170e18477a 100644 --- a/include/llvm/ExecutionEngine/ExecutionEngine.h +++ b/include/llvm/ExecutionEngine/ExecutionEngine.h @@ -243,7 +243,7 @@ public: } // The JIT overrides a version that actually does this. - virtual void runJITOnFunction(Function *F, MachineCodeInfo *MCI = 0) { } + virtual void runJITOnFunction(Function *, MachineCodeInfo * = 0) { } /// getGlobalValueAtAddress - Return the LLVM global value object that starts /// at the specified address. |