Path: blob/main/contrib/llvm-project/llvm/lib/Target/M68k/M68kTargetObjectFile.h
35269 views
//===-- M68kELFTargetObjectFile.h - M68k Object Info ------------*- C++ -*-===//1//2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3// See https://llvm.org/LICENSE.txt for license information.4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5//6//===----------------------------------------------------------------------===//7///8/// \file9/// This file contains declarations for M68k ELF object file lowering.10///11//===----------------------------------------------------------------------===//1213#ifndef LLVM_LIB_TARGET_M68K_M68KTARGETOBJECTFILE_H14#define LLVM_LIB_TARGET_M68K_M68KTARGETOBJECTFILE_H1516#include "llvm/CodeGen/TargetLoweringObjectFileImpl.h"1718namespace llvm {19class M68kTargetMachine;20class M68kELFTargetObjectFile : public TargetLoweringObjectFileELF {21const M68kTargetMachine *TM;22MCSection *SmallDataSection;23MCSection *SmallBSSSection;2425public:26void Initialize(MCContext &Ctx, const TargetMachine &TM) override;27};28} // end namespace llvm2930#endif // LLVM_LIB_TARGET_M68K_M68KTARGETOBJECTFILE_H313233