llvm/llvm/lib/XRay/RecordPrinter.cpp

//===- RecordPrinter.cpp - FDR Record Printer -----------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//
#include "llvm/XRay/RecordPrinter.h"

#include "llvm/Support/FormatVariadic.h"

namespace llvm {
namespace xray {

Error RecordPrinter::visit(BufferExtents &R) {}

Error RecordPrinter::visit(WallclockRecord &R) {}

Error RecordPrinter::visit(NewCPUIDRecord &R) {}

Error RecordPrinter::visit(TSCWrapRecord &R) {}

Error RecordPrinter::visit(CustomEventRecord &R) {}

Error RecordPrinter::visit(CustomEventRecordV5 &R) {}

Error RecordPrinter::visit(TypedEventRecord &R) {}

Error RecordPrinter::visit(CallArgRecord &R) {}

Error RecordPrinter::visit(PIDRecord &R) {}

Error RecordPrinter::visit(NewBufferRecord &R) {}

Error RecordPrinter::visit(EndBufferRecord &R) {}

Error RecordPrinter::visit(FunctionRecord &R) {}

} // namespace xray
} // namespace llvm