diff options
author | Bill Wendling <isanbard@gmail.com> | 2008-05-19 20:15:12 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2008-05-19 20:15:12 +0000 |
commit | 13d57320bd212483463d4f8992d5787b29eda5df (patch) | |
tree | 4161a4c6087bd4741c341ac401969d3cf82fda65 /include/llvm/ExecutionEngine | |
parent | 9d60ba9d28c21145515878294b07c91622435632 (diff) | |
download | external_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')
-rw-r--r-- | include/llvm/ExecutionEngine/ExecutionEngine.h | 4 |
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; } }; |