diff options
Diffstat (limited to 'include/llvm/Analysis/DominatorInternals.h')
-rw-r--r-- | include/llvm/Analysis/DominatorInternals.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/Analysis/DominatorInternals.h b/include/llvm/Analysis/DominatorInternals.h index 66ac2b7..cfd2d74 100644 --- a/include/llvm/Analysis/DominatorInternals.h +++ b/include/llvm/Analysis/DominatorInternals.h @@ -21,7 +21,8 @@ namespace llvm { template<class GraphT> -unsigned DFSPass(DominatorTree& DT, typename GraphT::NodeType* V, unsigned N) { +unsigned DFSPass(DominatorTreeBase& DT, typename GraphT::NodeType* V, + unsigned N) { // This is more understandable as a recursive algorithm, but we can't use the // recursive algorithm due to stack depth issues. Keep it here for // documentation purposes. |