OSDN Git Service

Update header documentation for API deliberately made public
authorDaniel Berlin <dberlin@dberlin.org>
Wed, 22 Jun 2016 20:31:12 +0000 (20:31 +0000)
committerDaniel Berlin <dberlin@dberlin.org>
Wed, 22 Jun 2016 20:31:12 +0000 (20:31 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@273473 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Support/GenericDomTree.h

index 6b65ff8..a74f31d 100644 (file)
@@ -138,8 +138,9 @@ public:
     }
   }
 
-  /// getDFSNumIn/getDFSNumOut - These are an internal implementation detail, do
-  /// not call them.
+  /// getDFSNumIn/getDFSNumOut - These return the DFS visitation order for nodes
+  /// in the dominator tree. They are only guaranteed valid if
+  /// updateDFSNumbers() has been called.
   unsigned getDFSNumIn() const { return DFSNumIn; }
   unsigned getDFSNumOut() const { return DFSNumOut; }