aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/ExecutionEngine
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2009-06-11 20:10:02 +0000
committerBill Wendling <isanbard@gmail.com>2009-06-11 20:10:02 +0000
commit3526a46d1862372c9f5d6cebc4d392c10d1728b9 (patch)
tree4135d74145447dbb5f0383cec3704dd906fd395c /include/llvm/ExecutionEngine
parent8c25df1f6c84ee5bf27b6d64ac3bd8b2ca986e4e (diff)
downloadexternal_llvm-3526a46d1862372c9f5d6cebc4d392c10d1728b9.zip
external_llvm-3526a46d1862372c9f5d6cebc4d392c10d1728b9.tar.gz
external_llvm-3526a46d1862372c9f5d6cebc4d392c10d1728b9.tar.bz2
Remove unused parameter warnings.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73202 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/ExecutionEngine')
-rw-r--r--include/llvm/ExecutionEngine/ExecutionEngine.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/ExecutionEngine/ExecutionEngine.h b/include/llvm/ExecutionEngine/ExecutionEngine.h
index 0d171f6..170e184 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.