aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/Constant.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-10-25 17:59:28 +0000
committerChris Lattner <sabre@nondot.org>2005-10-25 17:59:28 +0000
commit70cfe13f19e91a595808ed6c6ff7e87ff0dccd64 (patch)
tree6c8031e120bb2a9def0477d832ab45777353b0af /include/llvm/Constant.h
parent304a564c1f84eaaee8dc218a2eb57443c370e12f (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.h2
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.