another typo
[oota-llvm.git] / include / llvm / Support / ValueHandle.h
index 7e5bc1b4cf451495265443f8c5017700ae15db6e..c0cdc35e99bfae5a541f8f8a2180c36ce321a914 100644 (file)
@@ -105,7 +105,6 @@ private:
   // Callbacks made from Value.
   static void ValueIsDeleted(Value *V);
   static void ValueIsRAUWd(Value *Old, Value *New);
-  static void ValueAddedUse(Use &U);
 
   // Internal implementation details.
   ValueHandleBase **getPrevPtr() const { return PrevPair.getPointer(); }
@@ -390,11 +389,6 @@ public:
   /// implemented as a CallbackVH, it would use this method to call
   /// setValPtr(new_value).  AssertingVH would do nothing in this method.
   virtual void allUsesReplacedWith(Value *) {}
-  
-  /// Called when a new Use is added to the use-list of this->getValPtr(),
-  /// after the Use has been appended to the list.  Other VH kinds would ignore
-  /// this callback, but clients can use it to trigger re-analysis of Values.
-  virtual void addedUse(Use &) {}
 };
 
 // Specialize simplify_type to allow CallbackVH to participate in