//===-- DiffLog.h - Difference Log Builder and accessories ------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // // This header defines the interface to the LLVM difference log builder. // //===----------------------------------------------------------------------===// #ifndef LLVM_TOOLS_LLVM_DIFF_DIFFLOG_H #define LLVM_TOOLS_LLVM_DIFF_DIFFLOG_H #include "llvm/ADT/SmallVector.h" #include "llvm/ADT/StringRef.h" namespace llvm { class Instruction; class Value; class Consumer; /// Trichotomy assumption enum DiffChange { … }; /// A temporary-object class for building up log messages. class LogBuilder { … }; /// A temporary-object class for building up diff messages. class DiffLogBuilder { … }; } #endif