llvm/llvm/lib/DebugInfo/CodeView/DebugFrameDataSubsection.cpp

//===- DebugFrameDataSubsection.cpp -----------------------------*- 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
//
//===----------------------------------------------------------------------===//

#include "llvm/DebugInfo/CodeView/DebugFrameDataSubsection.h"
#include "llvm/DebugInfo/CodeView/CodeViewError.h"
#include "llvm/Support/BinaryStreamReader.h"
#include "llvm/Support/BinaryStreamWriter.h"

usingnamespacellvm;
usingnamespacellvm::codeview;

Error DebugFrameDataSubsectionRef::initialize(BinaryStreamReader Reader) {}

Error DebugFrameDataSubsectionRef::initialize(BinaryStreamRef Section) {}

uint32_t DebugFrameDataSubsection::calculateSerializedSize() const {}

Error DebugFrameDataSubsection::commit(BinaryStreamWriter &Writer) const {}

void DebugFrameDataSubsection::addFrameData(const FrameData &Frame) {}