llvm/llvm/tools/llvm-diff/lib/DiffConsumer.cpp

//===-- DiffConsumer.cpp - Difference Consumer ------------------*- 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 files implements the LLVM difference Consumer
//
//===----------------------------------------------------------------------===//

#include "DiffConsumer.h"
#include "llvm/IR/Instructions.h"
#include "llvm/Support/Debug.h"
#include "llvm/Support/ErrorHandling.h"

usingnamespacellvm;

static void ComputeNumbering(const Function *F,
                             DenseMap<const Value *, unsigned> &Numbering) {}

void Consumer::anchor() {}

void DiffConsumer::printValue(const Value *V, bool isL) {}

void DiffConsumer::header() {}

void DiffConsumer::indent() {}

void DiffConsumer::reset() {}

bool DiffConsumer::hadDifferences() const {}

void DiffConsumer::enterContext(const Value *L, const Value *R) {}

void DiffConsumer::exitContext() {}

void DiffConsumer::log(StringRef text) {}

void DiffConsumer::logf(const LogBuilder &Log) {}

void DiffConsumer::logd(const DiffLogBuilder &Log) {}