diff options
author | Chris Lattner <sabre@nondot.org> | 2005-10-04 18:12:13 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-10-04 18:12:13 +0000 |
commit | 40cdedecf5d871a83363cb7d69a6f6eed525651c (patch) | |
tree | 600dc009ed679d8d6f88002217ccb9c7174a9341 /include/llvm/Constant.h | |
parent | a55b30a225a023b6e6315b0c82a4622b457758ab (diff) |
Change the signature of replaceUsesOfWithOnConstant to take a Use* and not
take the bool. The bool is always true dynamically.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23625 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Constant.h')
-rw-r--r-- | include/llvm/Constant.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/llvm/Constant.h b/include/llvm/Constant.h index b82a259849..fc63b35b20 100644 --- a/include/llvm/Constant.h +++ b/include/llvm/Constant.h @@ -75,8 +75,7 @@ public: /// use Value::replaceAllUsesWith, which automatically dispatches to this /// method as needed. /// - virtual void replaceUsesOfWithOnConstant(Value *From, Value *To, - bool DisableChecking = false) { + virtual void replaceUsesOfWithOnConstant(Value *From, Value *To, Use *U) { // 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. |