diff options
Diffstat (limited to 'llvm/tools/llvm-cfi-verify/lib/GraphBuilder.h')
| -rw-r--r-- | llvm/tools/llvm-cfi-verify/lib/GraphBuilder.h | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/llvm/tools/llvm-cfi-verify/lib/GraphBuilder.h b/llvm/tools/llvm-cfi-verify/lib/GraphBuilder.h index 12d9c95e3cf..d1ce5096ed9 100644 --- a/llvm/tools/llvm-cfi-verify/lib/GraphBuilder.h +++ b/llvm/tools/llvm-cfi-verify/lib/GraphBuilder.h @@ -89,6 +89,9 @@ struct GraphResult {    // base. The provided address must be part of this graph, and must not be a    // conditional branch.    std::vector<uint64_t> flattenAddress(uint64_t Address) const; + +  // Print the DOT representation of this result. +  void printToDOT(const FileAnalysis &Analysis, raw_ostream &OS) const;  };  class GraphBuilder { | 

