diff options
author | Chris Lattner <sabre@nondot.org> | 2005-10-25 17:59:28 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-10-25 17:59:28 +0000 |
commit | 70cfe13f19e91a595808ed6c6ff7e87ff0dccd64 (patch) | |
tree | 6c8031e120bb2a9def0477d832ab45777353b0af /include/llvm/Constant.h | |
parent | 304a564c1f84eaaee8dc218a2eb57443c370e12f (diff) |
Remove some dead argument names which irritates GCC at certain warning levels.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23979 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Constant.h')
-rw-r--r-- | include/llvm/Constant.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Constant.h b/include/llvm/Constant.h index fc63b35b20..f9d8441a67 100644 --- a/include/llvm/Constant.h +++ b/include/llvm/Constant.h @@ -75,7 +75,7 @@ public: /// use Value::replaceAllUsesWith, which automatically dispatches to this /// method as needed. /// - virtual void replaceUsesOfWithOnConstant(Value *From, Value *To, Use *U) { + virtual void replaceUsesOfWithOnConstant(Value *, Value *, Use *) { // Provide a default implementation for constants (like integers) that // cannot use any other values. This cannot be called at runtime, but needs // to be here to avoid link errors. |