Support: Remove out-of-date comments
authorDuncan P. N. Exon Smith <dexonsmith@apple.com>
Tue, 29 Apr 2014 16:47:39 +0000 (16:47 +0000)
committerDuncan P. N. Exon Smith <dexonsmith@apple.com>
Tue, 29 Apr 2014 16:47:39 +0000 (16:47 +0000)
The code is now shared... no need for a note.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207555 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Support/BranchProbability.h

index 74d64194cf668c5c6a650e7ab768814abb46d9f8..c1153ea82322026b15cd4baec37bd9e0c9efe071 100644 (file)
@@ -56,10 +56,6 @@ public:
   /// result.
   ///
   /// \return \c Num times \c this.
-  ///
-  /// \note This code should be shared with (or replaced by) the implementation
-  /// of \a BlockFrequency::scale(), which seems to be calculating something
-  /// similar.
   uint64_t scale(uint64_t Num) const;
 
   /// \brief Scale a large integer by the inverse.
@@ -68,10 +64,6 @@ public:
   /// Returns the floor of the result.
   ///
   /// \return \c Num divided by \c this.
-  ///
-  /// \note This code should be shared with (or replaced by) the implementation
-  /// of \a BlockFrequency::scale(), which seems to be calculating something
-  /// similar.
   uint64_t scaleByInverse(uint64_t Num) const;
 
   bool operator==(BranchProbability RHS) const {