//===-- llvm/MC/MCObjectFileInfo.h - Object File Info -----------*- 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 file describes common object file formats. // //===----------------------------------------------------------------------===// #ifndef LLVM_MC_MCOBJECTFILEINFO_H #define LLVM_MC_MCOBJECTFILEINFO_H #include "llvm/BinaryFormat/Swift.h" #include "llvm/MC/MCSection.h" #include "llvm/Support/VersionTuple.h" #include "llvm/TargetParser/Triple.h" #include <array> #include <optional> namespace llvm { class MCContext; class MCSection; class MCObjectFileInfo { … }; } // end namespace llvm #endif