llvm/llvm/lib/DebugInfo/GSYM/Header.cpp

//===- Header.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/GSYM/Header.h"
#include "llvm/DebugInfo/GSYM/FileWriter.h"
#include "llvm/Support/DataExtractor.h"
#include "llvm/Support/Format.h"
#include "llvm/Support/raw_ostream.h"

#define HEX8(v)
#define HEX16(v)
#define HEX32(v)
#define HEX64(v)

usingnamespacellvm;
usingnamespacegsym;

raw_ostream &llvm::gsym::operator<<(raw_ostream &OS, const Header &H) {}

/// Check the header and detect any errors.
llvm::Error Header::checkForError() const {}

llvm::Expected<Header> Header::decode(DataExtractor &Data) {}

llvm::Error Header::encode(FileWriter &O) const {}

bool llvm::gsym::operator==(const Header &LHS, const Header &RHS) {}