llvm/llvm/lib/DebugInfo/CodeView/DebugCrossExSubsection.cpp

//===- DebugCrossExSubsection.cpp -----------------------------------------===//
//
// 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/DebugCrossExSubsection.h"
#include "llvm/DebugInfo/CodeView/CodeViewError.h"
#include "llvm/Support/BinaryStreamReader.h"
#include "llvm/Support/BinaryStreamWriter.h"
#include "llvm/Support/Error.h"
#include <cstdint>

usingnamespacellvm;
usingnamespacellvm::codeview;

Error DebugCrossModuleExportsSubsectionRef::initialize(
    BinaryStreamReader Reader) {}

Error DebugCrossModuleExportsSubsectionRef::initialize(BinaryStreamRef Stream) {}

void DebugCrossModuleExportsSubsection::addMapping(uint32_t Local,
                                                   uint32_t Global) {}

uint32_t DebugCrossModuleExportsSubsection::calculateSerializedSize() const {}

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