aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/ExecutionEngine/ExecutionEngine.h
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2008-05-19 20:15:12 +0000
committerBill Wendling <isanbard@gmail.com>2008-05-19 20:15:12 +0000
commit13d57320bd212483463d4f8992d5787b29eda5df (patch)
tree4161a4c6087bd4741c341ac401969d3cf82fda65 /include/llvm/ExecutionEngine/ExecutionEngine.h
parent9d60ba9d28c21145515878294b07c91622435632 (diff)
downloadexternal_llvm-13d57320bd212483463d4f8992d5787b29eda5df.zip
external_llvm-13d57320bd212483463d4f8992d5787b29eda5df.tar.gz
external_llvm-13d57320bd212483463d4f8992d5787b29eda5df.tar.bz2
Remove warnings about unused parameters and shadowed variables.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51266 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/ExecutionEngine/ExecutionEngine.h')
-rw-r--r--include/llvm/ExecutionEngine/ExecutionEngine.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/ExecutionEngine/ExecutionEngine.h b/include/llvm/ExecutionEngine/ExecutionEngine.h
index 1a6cdba..ff58473 100644
--- a/include/llvm/ExecutionEngine/ExecutionEngine.h
+++ b/include/llvm/ExecutionEngine/ExecutionEngine.h
@@ -50,12 +50,12 @@ private:
public:
std::map<const GlobalValue*, void *> &
- getGlobalAddressMap(const MutexGuard &locked) {
+ getGlobalAddressMap(const MutexGuard &) {
return GlobalAddressMap;
}
std::map<void*, const GlobalValue*> &
- getGlobalAddressReverseMap(const MutexGuard& locked) {
+ getGlobalAddressReverseMap(const MutexGuard &) {
return GlobalAddressReverseMap;
}
};